Date: Wed, 21 Jun 2006 11:53:02 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 99749 for review Message-ID: <200606211153.k5LBr2r4069061@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=99749 Change 99749 by rdivacky@rdivacky_witten on 2006/06/21 11:52:07 Change the protype of linux_set_thread_area() syscall and add necessary structure definition. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux.h#2 edit .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/syscalls.master#5 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux.h#2 (text+ko) ==== @@ -706,4 +706,17 @@ l_short revents; }; +struct l_user_desc { + l_uint entry_number; + l_uint base_addr; + l_uint limit; + l_uint seg_32bit:1; + l_uint contents:2; + l_uint read_exec_only:1; + l_uint limit_in_pages:1; + l_uint seg_not_present:1; + l_uint useable:1; +}; + + #endif /* !_I386_LINUX_LINUX_H_ */ ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/syscalls.master#5 (text+ko) ==== @@ -408,7 +408,7 @@ 240 AUE_NULL UNIMPL linux_futex 241 AUE_NULL UNIMPL linux_sched_setaffinity 242 AUE_NULL UNIMPL linux_sched_getaffinity -243 AUE_NULL MSTD { int linux_set_thread_area(void *entry); } +243 AUE_NULL MSTD { int linux_set_thread_area(struct l_user_desc *desc); } 244 AUE_NULL UNIMPL linux_get_thread_area 245 AUE_NULL UNIMPL linux_io_setup 246 AUE_NULL UNIMPL linux_io_destroy
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606211153.k5LBr2r4069061>