2003-08-02 00:48:41 +04:00
|
|
|
#include <pthread.h>
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <stdio.h>
|
2003-08-02 00:48:41 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
void* runner(void*);
|
|
|
|
|
|
|
|
int res = 0;
|
2004-04-15 16:22:19 +04:00
|
|
|
#ifdef __CLASSIC_C__
|
2016-05-16 17:34:04 +03:00
|
|
|
int main()
|
|
|
|
{
|
2004-04-15 16:22:19 +04:00
|
|
|
int ac;
|
2016-05-16 17:34:04 +03:00
|
|
|
char* av[];
|
2004-04-15 16:22:19 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
int main(int ac, char* av[])
|
|
|
|
{
|
2004-04-15 16:22:19 +04:00
|
|
|
#endif
|
2003-08-02 00:48:41 +04:00
|
|
|
pthread_t tid[2];
|
|
|
|
pthread_create(&tid[0], 0, runner, (void*)1);
|
|
|
|
pthread_create(&tid[1], 0, runner, (void*)2);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2015-10-26 16:17:44 +03:00
|
|
|
#if defined(__BEOS__) && !defined(__ZETA__) /* (no usleep on BeOS 5.) */
|
|
|
|
usleep(1); /* for strange behavior on single-processor sun */
|
2006-12-05 01:26:41 +03:00
|
|
|
#endif
|
|
|
|
|
2003-08-02 00:48:41 +04:00
|
|
|
pthread_join(tid[0], 0);
|
|
|
|
pthread_join(tid[1], 0);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ac > 1000) {
|
|
|
|
return *av[0];
|
|
|
|
}
|
2003-08-02 00:48:41 +04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* runner(void* args)
|
|
|
|
{
|
|
|
|
int cc;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cc = 0; cc < 10; cc++) {
|
2015-09-22 07:46:28 +03:00
|
|
|
printf("%p CC: %d\n", args, cc);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
res++;
|
2003-08-02 00:48:41 +04:00
|
|
|
return 0;
|
|
|
|
}
|