C Language
धागे (मूल)
खोज…
वाक्य - विन्यास
-
#ifndef __STDC_NO_THREADS__
-
# include <threads.h>
-
#endif
-
void call_once(once_flag *flag, void (*func)(void));
-
int cnd_broadcast(cnd_t *cond);
-
void cnd_destroy(cnd_t *cond);
-
int cnd_init(cnd_t *cond);
-
int cnd_signal(cnd_t *cond);
-
int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timespec *restrict ts);
-
int cnd_wait(cnd_t *cond, mtx_t *mtx);
-
void mtx_destroy(mtx_t *mtx);
-
int mtx_init(mtx_t *mtx, int type);
-
int mtx_lock(mtx_t *mtx);
-
int mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts);
-
int mtx_trylock(mtx_t *mtx);
-
int mtx_unlock(mtx_t *mtx);
-
int thrd_create(thrd_t *thr, thrd_start_t func, void *arg);
-
thrd_t thrd_current(void);
-
int thrd_detach(thrd_t thr);
-
int thrd_equal(thrd_t thr0, thrd_t thr1);
-
_Noreturn void thrd_exit(int res);
-
int thrd_join(thrd_t thr, int *res);
-
int thrd_sleep(const struct timespec *duration, struct timespec* remaining);
-
void thrd_yield(void);
-
int tss_create(tss_t *key, tss_dtor_t dtor);
-
void tss_delete(tss_t key);
-
void *tss_get(tss_t key);
-
int tss_set(tss_t key, void *val);
टिप्पणियों
C11 थ्रेड्स एक वैकल्पिक विशेषता है। उनकी अनुपस्थिति का __STDC__NO_THREAD__
साथ परीक्षण किया जा सकता है। वर्तमान में (Jul 2016) यह सुविधा अभी तक सभी C पुस्तकालयों द्वारा लागू नहीं की गई है जो अन्यथा C11 का समर्थन करते हैं।
C लाइब्रेरी जो C11 थ्रेड का समर्थन करने के लिए जानी जाती हैं, वे हैं:
C लाइब्रेरी जो अभी तक C11 थ्रेड का समर्थन नहीं करती हैं:
कई सूत्र शुरू करें
#include <stdio.h>
#include <threads.h>
#include <stdlib.h>
struct my_thread_data {
double factor;
};
int my_thread_func(void* a) {
struct my_thread_data* d = a;
// do something with d
printf("we found %g\n", d->factor);
// return an success or error code
return d->factor > 1.0;
}
int main(int argc, char* argv[argc+1]) {
unsigned n = 4;
if (argc > 1) n = strtoull(argv[1], 0, 0);
// reserve space for the arguments for the threads
struct my_thread_data D[n]; // can't be initialized
for (unsigned i = 0; i < n; ++i) {
D[i] = (struct my_thread_data){ .factor = 0.5*i, };
}
// reserve space for the ID's of the threads
thrd_t id[4];
// launch the threads
for (unsigned i = 0; i < n; ++i) {
thrd_create(&id[i], my_thread_func, &D[i]);
}
// Wait that all threads have finished, but throw away their
// return values
for (unsigned i = 0; i < n; ++i) {
thrd_join(id[i], 0);
}
return EXIT_SUCCESS;
}
एक थ्रेड द्वारा Inititialization
ज्यादातर मामलों में सभी डेटा जो कि कई थ्रेड्स द्वारा एक्सेस किए जाते हैं, थ्रेड्स बनाने से पहले इसे इनिशियलाइज़ किया जाना चाहिए। यह सुनिश्चित करता है कि सभी धागे स्पष्ट स्थिति से शुरू होते हैं और कोई दौड़ की स्थिति नहीं होती है।
यदि यह एक बार संभव नहीं है once_flag
और call_once
का उपयोग किया जा सकता है
#include <threads.h>
#include <stdlib.h>
// the user data for this example
double const* Big = 0;
// the flag to protect big, must be global and/or static
static once_flag onceBig = ONCE_INIT;
void destroyBig(void) {
free((void*)Big);
}
void initBig(void) {
// assign to temporary with no const qualification
double* b = malloc(largeNum);
if (!b) {
perror("allocation failed for Big");
exit(EXIT_FAILURE);
}
// now initialize and store Big
initializeBigWithSophisticatedValues(largeNum, b);
Big = b;
// ensure that the space is freed on exit or quick_exit
atexit(destroyBig);
at_quick_exit(destroyBig);
}
// the user thread function that relies on Big
int myThreadFunc(void* a) {
call_once(&onceBig, initBig);
// only use Big from here on
...
return 0;
}
एक once_flag
का उपयोग विभिन्न थ्रेड्स को समन्वित करने के लिए किया जाता है जो समान डेटा Big
को इनिशियलाइज़ करना चाहते हैं। call_once
की कॉल गारंटी देती है कि
-
initBig
को एक बार ही कहा जाता है -
call_once
तब तक ब्लॉक किया जाता है जब तक किinitBig
लिए ऐसी कॉल नहीं कीinitBig
है, या तो उसी या किसी अन्य थ्रेड द्वारा।
आबंटन के अलावा, इस तरह के एक बार के कार्य में एक विशिष्ट बात यह है कि cnd_t
mtx_t
या cnd_t
जैसे थ्रेड कंट्रोल डेटा स्ट्रक्चर्स का एक डायनामिक इनिशियलाइज़ेशन किया जा सकता है, cnd_init
क्रमशः mtx_init
या cnd_init
का उपयोग करके mtx_init
रूप से आरम्भ नहीं किया जा सकता है।