tag | line | file | source code |
---|---|---|---|
tbuf | 325 | kernel/sys.c | int sys_times(struct tms * tbuf) |
tbuf | 327 | kernel/sys.c | if (tbuf) { |
tbuf | 328 | kernel/sys.c | verify_area(tbuf,sizeof *tbuf); |
tbuf | 329 | kernel/sys.c | put_fs_long(current->utime,(unsigned long *)&tbuf->tms_utime); |
tbuf | 330 | kernel/sys.c | put_fs_long(current->stime,(unsigned long *)&tbuf->tms_stime); |
tbuf | 331 | kernel/sys.c | put_fs_long(current->cutime,(unsigned long *)&tbuf->tms_cutime); |
tbuf | 332 | kernel/sys.c | put_fs_long(current->cstime,(unsigned long *)&tbuf->tms_cstime); |