Date: Mon, 24 Jul 2006 14:32:43 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 102286 for review Message-ID: <200607241432.k6OEWh9j092167@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=102286 Change 102286 by rdivacky@rdivacky_witten on 2006/07/24 14:32:19 Introduce LINUX_FUTEX_WAKE_OP. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#8 edit .. //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.h#2 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#8 (text+ko) ==== @@ -209,6 +209,11 @@ printf("linux_sys_futex: unimplemented op %d\n", args->op); break; + case LINUX_FUTEX_WAIT_OP: + /* XXX: it seems necessary for realplay */ + printf("linux_sys_futex: unimplemented op %d\n", + args->op); + break; default: printf("linux_sys_futex: unknown op %d\n", args->op); ==== //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.h#2 (text+ko) ==== @@ -39,5 +39,6 @@ #define LINUX_FUTEX_FD 2 #define LINUX_FUTEX_REQUEUE 3 #define LINUX_FUTEX_CMP_REQUEUE 4 +#define LINUX_FUTEX_WAKE_OP 5 #endif /* !_LINUX_FUTEX_H */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607241432.k6OEWh9j092167>