• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * File: create3.c
3  *
4  *
5  * --------------------------------------------------------------------------
6  *
7  *      Pthreads-win32 - POSIX Threads Library for Win32
8  *      Copyright(C) 1998 John E. Bossom
9  *      Copyright(C) 1999,2003 Pthreads-win32 contributors
10  *
11  *      Contact Email: rpj@callisto.canberra.edu.au
12  *
13  *      The current list of contributors is contained
14  *      in the file CONTRIBUTORS included with the source
15  *      code distribution. The list can also be seen at the
16  *      following World Wide Web location:
17  *      http://sources.redhat.com/pthreads-win32/contributors.html
18  *
19  *      This library is free software; you can redistribute it and/or
20  *      modify it under the terms of the GNU Lesser General Public
21  *      License as published by the Free Software Foundation; either
22  *      version 2 of the License, or (at your option) any later version.
23  *
24  *      This library is distributed in the hope that it will be useful,
25  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27  *      Lesser General Public License for more details.
28  *
29  *      You should have received a copy of the GNU Lesser General Public
30  *      License along with this library in the file COPYING.LIB;
31  *      if not, write to the Free Software Foundation, Inc.,
32  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
33  *
34  * --------------------------------------------------------------------------
35  *
36  * Test Synopsis: Test passing NULL as thread id arg to pthread_create.
37  *
38  * Test Method (Validation or Falsification):
39  * -
40  *
41  * Requirements Tested:
42  * -
43  *
44  * Features Tested:
45  * -
46  *
47  * Cases Tested:
48  * -
49  *
50  * Description:
51  * -
52  *
53  * Environment:
54  * -
55  *
56  * Input:
57  * - None.
58  *
59  * Output:
60  * - File name, Line number, and failed expression on failure.
61  * - No output on success.
62  *
63  * Assumptions:
64  * -
65  *
66  * Pass Criteria:
67  * - Process returns zero exit status.
68  *
69  * Fail Criteria:
70  * - Process returns non-zero exit status.
71  */
72 
73 
74 #ifdef __GNUC__
75 #include <stdlib.h>
76 #endif
77 
78 #include "test.h"
79 
80 /*
81  * Create NUMTHREADS threads in addition to the Main thread.
82  */
83 enum {
84   NUMTHREADS = 1
85 };
86 
87 
88 void *
threadFunc(void * arg)89 threadFunc(void * arg)
90 {
91   return (void *) 0;
92 }
93 
94 int
main(int argc,char * argv[])95 main(int argc, char * argv[])
96 {
97   int i;
98   pthread_t mt;
99 
100   if (argc <= 1)
101     {
102       int result;
103 
104       printf("You should see an application memory write error message\n");
105       fflush(stdout);
106       result = system("create3.exe die");
107       exit(0);
108     }
109 
110   assert((mt = pthread_self()) != 0);
111   assert(pthread_gethandle (mt) != NULL);
112 
113   for (i = 0; i < NUMTHREADS; i++)
114     {
115       assert(pthread_create(NULL, NULL, threadFunc, NULL) == 0);
116     }
117 
118   /*
119    * Success.
120    */
121   return 0;
122 }
123 
124