1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <pthread.h>
#include "cl_lists.h"
void *timeout_thread_main(void *t_conf); /* thread_func for timeout thread implementation */
#define THREAD_COUNT 10
#ifdef __CL_FUNCTION__
#undef __CL_FUNCTION__
#endif
#define __CL_FUNCTION__ "main()"
extern int main(void)
{
int i;
int retval;
cl_thread_settings_t thread_list[THREAD_COUNT];
/* timeout_thread = (cl_thread_settings_t*) malloc(sizeof(cl_thread_settings_t)); */
for (i=0;i<THREAD_COUNT;i++) {
char name[20];
sprintf(name,"thread_%d_",i);
if ( (retval=cl_thread_setup(&thread_list[i],NULL,name, i, timeout_thread_main, NULL, NULL, CL_TT_USER1)) != CL_RETVAL_OK) {
printf("error: cl_thread_setup() - %d\n", retval);
}
}
retval = cl_thread_shutdown(&thread_list[0]);
if (retval != CL_RETVAL_OK) {
printf("error: cl_thread_shutdown() - %d\n", retval);
}
for (i=THREAD_COUNT/2;i<THREAD_COUNT;i++) {
retval = cl_thread_trigger_event(&thread_list[i]);
if (retval != CL_RETVAL_OK) {
printf("error: cl_thread_trigger_event() - %d\n", retval);
}
retval = cl_thread_join(&thread_list[i]);
if (retval != CL_RETVAL_OK) {
printf("error: cl_thread_join() - %d\n", retval);
}
}
for (i=0;i<THREAD_COUNT;i++) {
printf("main(): thread %s: state= %s\n",(&thread_list[i])->thread_name,cl_thread_get_state(&thread_list[i]));
}
for (i=0;i<(THREAD_COUNT/2);i++) {
retval = cl_thread_join(&thread_list[i]);
if (retval != CL_RETVAL_OK) {
printf("error: cl_thread_join() - %d\n", retval);
}
}
for (i=0;i<THREAD_COUNT;i++) {
retval = cl_thread_cleanup(&thread_list[i]);
if (retval != CL_RETVAL_OK) {
printf("error: cl_thread_cleanup() - %d, thread %d\n", retval,i);
}
}
/* free(timeout_thread); */
printf("main done\n");
return 0;
}
/* thread implementation */
/* WARNING: a thread can be canceled per default in the cl_thread_wait_for_event()
call. The programmer has to ensure, that all the tread don't leave any
things on the stack. Use pthread_cleanup_push() and pthread_cleanup_pop() */
#ifdef __CL_FUNCTION__
#undef __CL_FUNCTION__
#endif
#define __CL_FUNCTION__ "timeout_thread_main()"
void *timeout_thread_main(void *t_conf) {
/* get pointer to cl_thread_settings_t struct */
int ret_val;
int pthread_cleanup_pop_execute = 0; /* workaround for irix compiler warning */
cl_thread_settings_t *thread_config = (cl_thread_settings_t*)t_conf;
pthread_cleanup_push((void (*)(void *)) cl_thread_default_cleanup_function, (void*) thread_config );
/* setup thread */
if (thread_config) {
printf("thread %d: initialize\n", thread_config->thread_id);
/* thread init done, trigger startup conditon variable*/
ret_val = cl_thread_func_startup(thread_config);
if (ret_val != CL_RETVAL_OK) {
printf("thread %d: cl_thread_func_startup() - %d\n", thread_config->thread_id, ret_val);
}
/* ok, thread main */
printf("thread %d: enter mainloop\n", thread_config->thread_id);
if ((ret_val=cl_thread_wait_for_event(thread_config,10,0)) != CL_RETVAL_OK) { /* nothing to do */
switch(ret_val) {
case CL_RETVAL_CONDITION_WAIT_TIMEOUT:
printf("thread %d: got timeout\n", thread_config->thread_id);
break;
default:
printf("thread %d: got error: %d\n", thread_config->thread_id, ret_val);
}
}
printf("thread %d: exit\n", thread_config->thread_id);
/* at least set exit state */
ret_val = cl_thread_func_cleanup(thread_config);
if (ret_val != CL_RETVAL_OK) {
printf("thread %d: cl_thread_func_cleanup() - %d\n", thread_config->thread_id, ret_val);
}
}
pthread_cleanup_pop(pthread_cleanup_pop_execute);
return(NULL);
}
|