1 /******************************************************************************
3 * Copyright FUJITSU LIMITED 2010
4 * Copyright KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 * Wait on uninitialized heap. It shold be zero and FUTEX_WAIT should
13 * return immediately. This test is intent to test zero page handling in
17 * KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
20 * 2010-Jan-6: Initial version by KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
22 *****************************************************************************/
29 #include <sys/types.h>
33 #include <linux/futex.h>
37 #include "futextest.h"
39 #define WAIT_US 5000000
41 static int child_blocked
= 1;
45 void usage(char *prog
)
47 printf("Usage: %s\n", prog
);
48 printf(" -c Use color\n");
49 printf(" -h Display this help message\n");
50 printf(" -v L Verbosity level: %d=QUIET %d=CRITICAL %d=INFO\n",
51 VQUIET
, VCRITICAL
, VINFO
);
54 void *wait_thread(void *arg
)
59 res
= futex_wait(buf
, 1, NULL
, 0);
62 if (res
!= 0 && errno
!= EWOULDBLOCK
) {
63 error("futex failure\n", errno
);
64 child_ret
= RET_ERROR
;
69 int main(int argc
, char **argv
)
71 int c
, ret
= RET_PASS
;
75 while ((c
= getopt(argc
, argv
, "chv:")) != -1) {
81 usage(basename(argv
[0]));
84 log_verbosity(atoi(optarg
));
87 usage(basename(argv
[0]));
92 page_size
= sysconf(_SC_PAGESIZE
);
94 buf
= mmap(NULL
, page_size
, PROT_READ
|PROT_WRITE
,
95 MAP_PRIVATE
|MAP_ANONYMOUS
, 0, 0);
96 if (buf
== (void *)-1) {
97 error("mmap\n", errno
);
101 printf("%s: Test the uninitialized futex value in FUTEX_WAIT\n",
105 ret
= pthread_create(&thr
, NULL
, wait_thread
, NULL
);
107 error("pthread_create\n", errno
);
112 info("waiting %dus for child to return\n", WAIT_US
);
117 fail("child blocked in kernel\n");