#include <errno.h>
#include <string.h>
#include <asm/segment.h>
static char buf[24];
int sys_iam(const char *name)
{
int i = 0;
char tmp[24];
while ((tmp[i] = get_fs_byte(name + i)) != '\0' && i < 24)
i++;
if (i > 23)
return -EINVAL;
strcpy(buf, tmp);
//printk("%s", buf);
return i;
}
int sys_whoami(char *name, unsigned int size)
{
unsigned int n = strlen(buf), i;
if(n < size)
{
for(i = 0; i < n; i++)
put_fs_byte(buf[i], &name[i]);
return n;
}
else
return -EINVAL;
}
copy
#define __LIBRARY__
#include <unistd.h>
_syscall1(int, iam, const char*, name)
#include<stdio.h>
int main(int argc, char *argv[])
{
if(argc != 2)
{
puts("Argument Error!");
return -1;
}
if(iam(argv[1]) != -1)
return 0;
return -1;
}
copy
#define __LIBRARY__
#include <unistd.h>
_syscall2(int, whoami, char*, name, unsigned int, size)
#include<stdio.h>
int main()
{
char name[24];
if(whoami(name, 23) != -1)
puts(name);
return -1;
}
copy
完整代码在https://github.com/chensiyan96/oslab/tree/3
学习时间 105分钟
操作时间 63分钟
按键次数 1987次
实验次数 21次
报告字数 1716字
是否完成 完成