Lines Matching full:prohibited
23 // Ensure that writing variables is prohibited.
24 x = 0; // expected-warning{{This assignment is prohibited after a successful vfork}}
27 // Ensure that calling functions is prohibited.
28 foo(); // expected-warning{{This function call is prohibited after a successful vfork}}
31 // Ensure that returning from function is prohibited.
32 return 0; // expected-warning{{Return is prohibited after a successful vfork; call _exit() instead}}
51 // Ensure that writing variables is prohibited.
52 x = 0; // expected-warning{{This assignment is prohibited after a successful vfork}}
55 // Ensure that calling functions is prohibited.
56 foo(); // expected-warning{{This function call is prohibited after a successful vfork}}
59 // Ensure that returning from function is prohibited.
60 return 0; // expected-warning{{Return is prohibited after a successful vfork; call _exit() instead}}
80 x = 0; // expected-warning{{This assignment is prohibited after a successful vfork}}
88 args[0] = 0; // expected-warning{{This assignment is prohibited after a successful vfork}}
111 exit(1); // expected-warning{{This function call is prohibited after a successful vfork}}