Home
last modified time | relevance | path

Searched refs:mythread (Results 1 – 25 of 216) sorted by relevance

123456789

/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/mycore/
H A Dmythread.c44 mythread->attr = mythread_thread_attr_init(mythread); in mythread_init()
48 mythread->timespec = mythread_nanosleep_create(mythread); in mythread_init()
55 mythread_thread_attr_clean(mythread, mythread->attr); in mythread_clean()
72 mythread_thread_attr_destroy(mythread, mythread->attr); in mythread_destroy()
80 return mythread; in mythread_destroy()
87 if(mythread->entries_length >= mythread->entries_size) in myhread_entry_create()
90 mythread_entry_t *entry = &mythread->entries[mythread->entries_length]; in myhread_entry_create()
92 entry->context.mythread = mythread; in myhread_entry_create()
133 before_join(mythread, &mythread->entries[i], ctx); in mythread_join()
135 if(mythread_thread_join(mythread, mythread->entries[i].thread)) in mythread_join()
[all …]
H A Dmythread.h34 struct mythread { struct
75 mythread_t* mythread;
85 struct mythread {
103 void mythread_clean(mythread_t *mythread);
111 mystatus_t mythread_stop(mythread_t *mythread);
113 mystatus_t mythread_suspend(mythread_t *mythread);
114 mystatus_t mythread_check_status(mythread_t *mythread);
116 mythread_thread_opt_t mythread_option(mythread_t *mythread);
136 void * mythread_thread_attr_init(mythread_t *mythread);
140 void * mythread_mutex_create(mythread_t *mythread);
[all …]
H A Dthread_queue.c113 if(mythread) in mythread_queue_node_malloc()
114 mythread_queue_list_wait_for_done(mythread, mythread->context); in mythread_queue_node_malloc()
160 if(mythread) in mythread_queue_node_malloc_limit()
161 mythread_queue_list_wait_for_done(mythread, mythread->context); in mythread_queue_node_malloc_limit()
175 if(mythread) in mythread_queue_node_malloc_limit()
176 mythread_queue_list_wait_for_done(mythread, mythread->context); in mythread_queue_node_malloc_limit()
225 if(mythread) in mythread_queue_node_malloc_round()
483 mythread_t *mythread = ctx->mythread; in mythread_function_see_opt() local
520 mythread_t *mythread = ctx->mythread; in mythread_function_queue_batch() local
575 mythread_t * mythread = ctx->mythread; in mythread_function_queue_stream() local
[all …]
H A Dthread_queue.h84 mythread_queue_node_t * mythread_queue_node_malloc(mythread_t *mythread, mythread_queue_t* queue, m…
85 mythread_queue_node_t * mythread_queue_node_malloc_limit(mythread_t *mythread, mythread_queue_t* qu…
87 mythread_queue_node_t * mythread_queue_node_malloc_round(mythread_t *mythread, mythread_queue_list_…
95 void mythread_queue_list_wait_for_done(mythread_t* mythread, mythread_queue_list_t* queue_list);
96 bool mythread_queue_list_see_for_done(mythread_t* mythread, mythread_queue_list_t* queue_list);
97 bool mythread_queue_list_see_for_done_by_thread(mythread_t* mythread, mythread_queue_list_t* queue_…
102 void mythread_queue_list_entry_wait_for_done(mythread_t *mythread, mythread_queue_list_entry_t *ent…
103 void mythread_queue_list_entry_make_batch(mythread_t* mythread, mythread_queue_list_entry_t* entry);
104 void mythread_queue_list_entry_make_stream(mythread_t* mythread, mythread_queue_list_entry_t* entry…
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/include/mycore/
H A Dmythread.h34 struct mythread { struct
75 mythread_t* mythread;
85 struct mythread {
103 void mythread_clean(mythread_t *mythread);
111 mystatus_t mythread_stop(mythread_t *mythread);
113 mystatus_t mythread_suspend(mythread_t *mythread);
114 mystatus_t mythread_check_status(mythread_t *mythread);
116 mythread_thread_opt_t mythread_option(mythread_t *mythread);
136 void * mythread_thread_attr_init(mythread_t *mythread);
140 void * mythread_mutex_create(mythread_t *mythread);
[all …]
H A Dthread_queue.h84 mythread_queue_node_t * mythread_queue_node_malloc(mythread_t *mythread, mythread_queue_t* queue, m…
85 mythread_queue_node_t * mythread_queue_node_malloc_limit(mythread_t *mythread, mythread_queue_t* qu…
87 mythread_queue_node_t * mythread_queue_node_malloc_round(mythread_t *mythread, mythread_queue_list_…
95 void mythread_queue_list_wait_for_done(mythread_t* mythread, mythread_queue_list_t* queue_list);
96 bool mythread_queue_list_see_for_done(mythread_t* mythread, mythread_queue_list_t* queue_list);
97 bool mythread_queue_list_see_for_done_by_thread(mythread_t* mythread, mythread_queue_list_t* queue_…
102 void mythread_queue_list_entry_wait_for_done(mythread_t *mythread, mythread_queue_list_entry_t *ent…
103 void mythread_queue_list_entry_make_batch(mythread_t* mythread, mythread_queue_list_entry_t* entry);
104 void mythread_queue_list_entry_make_stream(mythread_t* mythread, mythread_queue_list_entry_t* entry…
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/myport/posix/mycore/
H A Dthread.c45 mystatus_t mythread_thread_join(mythread_t *mythread, void* thread) in mythread_thread_join() argument
67 void * mythread_thread_attr_init(mythread_t *mythread) in mythread_thread_attr_init() argument
74 mythread->sys_last_error = pthread_attr_init(attr); in mythread_thread_attr_init()
75 if(mythread->sys_last_error) { in mythread_thread_attr_init()
81 if(mythread->sys_last_error) { in mythread_thread_attr_init()
89 void mythread_thread_attr_clean(mythread_t *mythread, void* attr) in mythread_thread_attr_clean() argument
99 mythread->sys_last_error = pthread_attr_destroy(attr); in mythread_thread_attr_destroy()
103 void * mythread_mutex_create(mythread_t *mythread) in mythread_mutex_create() argument
117 mystatus_t mythread_mutex_post(mythread_t *mythread, void* mutex) in mythread_mutex_post() argument
132 void mythread_mutex_close(mythread_t *mythread, void* mutex) in mythread_mutex_close() argument
[all …]
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/myport/windows_nt/mycore/
H A Dthread.c41 mystatus_t mythread_thread_join(mythread_t *mythread, void* thread) in mythread_thread_join() argument
49 mystatus_t mythread_thread_cancel(mythread_t *mythread, void* thread) in mythread_thread_cancel() argument
65 void * mythread_thread_attr_init(mythread_t *mythread) in mythread_thread_attr_init() argument
70 void mythread_thread_attr_clean(mythread_t *mythread, void* attr) in mythread_thread_attr_clean() argument
74 void mythread_thread_attr_destroy(mythread_t *mythread, void* attr) in mythread_thread_attr_destroy() argument
78 void * mythread_mutex_create(mythread_t *mythread) in mythread_mutex_create() argument
92 mystatus_t mythread_mutex_post(mythread_t *mythread, void* mutex) in mythread_mutex_post() argument
97 mystatus_t mythread_mutex_wait(mythread_t *mythread, void* mutex) in mythread_mutex_wait() argument
102 mystatus_t mythread_mutex_try_wait(mythread_t *mythread, void* mutex) in mythread_mutex_try_wait() argument
107 void mythread_mutex_close(mythread_t *mythread, void* mutex) in mythread_mutex_close() argument
[all …]
/dports/www/yabb/YaBB_2.6.11/cgi-bin/yabb2/Sources/
H A DNotify.pm475 if ( !-e "$datadir/$mythread.txt" ) {
479 if !exists $moved_file{$mythread} || !$moved_file{$mythread};
481 while ( exists $moved_file{$mythread} ) {
482 $mythread = $moved_file{$mythread};
486 $newthread = $mythread;
497 ManageThreadNotify( 'load', $mythread );
501 MessageTotals( 'load', $mythread );
504 my $boardid = ${$mythread}{'board'};
573 my $dlp = int $yyuserlog{$mythread};
585 $thread_notify{$mythread} = [
[all …]
/dports/math/tmv/tmv-0.75/src/
H A DTMV_MultMM_OpenMP.cpp42 ptrdiff_t mythread = omp_get_thread_num(); in OpenMPMultMM() local
48 ptrdiff_t i1 = mythread * Mx; in OpenMPMultMM()
49 ptrdiff_t i2 = (mythread+1) * Mx; in OpenMPMultMM()
50 if (i2 > M || mythread == num_threads-1) i2 = M; in OpenMPMultMM()
58 ptrdiff_t j1 = mythread * Nx; in OpenMPMultMM()
59 ptrdiff_t j2 = (mythread+1) * Nx; in OpenMPMultMM()
60 if (j2 > N || mythread == num_threads-1) j2 = N; in OpenMPMultMM()
/dports/devel/mingw32-pthreads/pthreads-w32-2-8-0-release/tests/
H A Donce1.c56 mythread(void * arg) in mythread() function
68 assert(pthread_create(&t1, NULL, mythread, NULL) == 0); in main()
70 assert(pthread_create(&t2, NULL, mythread, NULL) == 0); in main()
/dports/multimedia/obs-studio/obs-studio-27.1.3/deps/w32-pthreads/tests/
H A Donce1.c56 mythread(void * arg) in mythread() function
68 assert(pthread_create(&t1, NULL, mythread, NULL) == 0); in main()
70 assert(pthread_create(&t2, NULL, mythread, NULL) == 0); in main()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/micro/org/openjdk/bench/java/lang/
H A DThreadStartJoin.java59 for (Thread mythread : ts) { in test()
60 mythread.join(); in test()
62 if (mythread.isAlive()) { in test()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/micro/org/openjdk/bench/java/lang/
H A DThreadStartJoin.java59 for (Thread mythread : ts) { in test()
60 mythread.join(); in test()
62 if (mythread.isAlive()) { in test()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/micro/org/openjdk/bench/java/lang/
H A DThreadStartJoin.java59 for (Thread mythread : ts) { in test()
60 mythread.join(); in test()
62 if (mythread.isAlive()) { in test()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/micro/org/openjdk/bench/java/lang/
H A DThreadStartJoin.java59 for (Thread mythread : ts) { in test()
60 mythread.join(); in test()
62 if (mythread.isAlive()) { in test()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/micro/org/openjdk/bench/java/lang/
H A DThreadStartJoin.java59 for (Thread mythread : ts) { in test()
60 mythread.join(); in test()
62 if (mythread.isAlive()) { in test()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/micro/org/openjdk/bench/java/lang/
H A DThreadStartJoin.java59 for (Thread mythread : ts) { in test()
60 mythread.join(); in test()
62 if (mythread.isAlive()) { in test()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/lzma/vtklzma/src/common/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/lzma-sys-0.1.17/xz-5.2/src/common/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()
/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/cargo-crates/lzma-sys-0.1.16/xz-5.2/src/common/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()
/dports/devel/cmake-gui/cmake-3.22.1/Utilities/cmliblzma/common/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()
/dports/devel/cmake-doc/cmake-3.22.1/Utilities/cmliblzma/common/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()
/dports/emulators/dolphin-emu/dolphin-3152428/Externals/liblzma/tuklib/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/lzma/vtklzma/src/common/
H A Dmythread.h112 typedef pthread_t mythread; typedef
156 mythread_create(mythread *thread, void *(*func)(void *arg), void *arg) in mythread_create()
171 mythread_join(mythread thread) in mythread_join()
343 typedef HANDLE mythread; typedef
386 mythread_create(mythread *thread, in mythread_create()
398 mythread_join(mythread thread) in mythread_join()

123456789