Home
last modified time | relevance | path

Searched refs:pthreads (Results 1 – 25 of 49) sorted by relevance

12

/OK3568_Linux_fs/buildroot/package/rpi-userland/
H A D0003-Disable-Werror-everywhere.patch30 interface/vcos/pthreads/CMakeLists.txt | 2 +-
53 set(VCOS_PLATFORM pthreads)
92 set(VCOS_PLATFORM pthreads)
105 set(VCOS_PLATFORM pthreads)
137 diff --git a/interface/vcos/pthreads/CMakeLists.txt b/interface/vcos/pthreads/CMakeLists.txt
139 --- a/interface/vcos/pthreads/CMakeLists.txt
140 +++ b/interface/vcos/pthreads/CMakeLists.txt
H A D0001-Add-.pc-files-for-the-OpenGLESv2-EGL-and-bcm_host-li.patch52 …} -I${includedir}/interface/vmcs_host/linux -I${includedir}/interface/vcos/pthreads -DUSE_VCHIQ_ARM
87 +Cflags: -I${includedir}/ -I${includedir}/interface/vcos/pthreads/ \
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dpython.c643 static int pyrf_thread_map__init(struct pyrf_thread_map *pthreads, in pyrf_thread_map__init() argument
653 pthreads->threads = thread_map__new(pid, tid, uid); in pyrf_thread_map__init()
654 if (pthreads->threads == NULL) in pyrf_thread_map__init()
659 static void pyrf_thread_map__delete(struct pyrf_thread_map *pthreads) in pyrf_thread_map__delete() argument
661 perf_thread_map__put(pthreads->threads); in pyrf_thread_map__delete()
662 Py_TYPE(pthreads)->tp_free((PyObject*)pthreads); in pyrf_thread_map__delete()
667 struct pyrf_thread_map *pthreads = (void *)obj; in pyrf_thread_map__length() local
669 return pthreads->threads->nr; in pyrf_thread_map__length()
674 struct pyrf_thread_map *pthreads = (void *)obj; in pyrf_thread_map__item() local
676 if (i >= pthreads->threads->nr) in pyrf_thread_map__item()
[all …]
/OK3568_Linux_fs/external/xserver/m4/
H A Dax_pthread.m4126 ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --th…
131 # pthreads: AIX (must check this before -lpthread)
138 # -pthreads: Solaris/gcc
141 # doesn't hurt to check since this sometimes defines pthreads too;
143 # ... -mt is also the pthreads flag for HP/aCC
152 # (non-functional) versions of the pthreads routines, so link-based
153 # tests will erroneously succeed. (We need to link with -pthreads/-mt/
157 # we'll just look for -pthreads and -lpthread first:
159 ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags"
191 AC_MSG_CHECKING([whether pthreads work without any flags])
[all …]
/OK3568_Linux_fs/buildroot/package/ser2net/
H A Dser2net.mk14 SER2NET_CONF_OPTS += --with-pthreads
16 SER2NET_CONF_OPTS += --without-pthreads
/OK3568_Linux_fs/buildroot/package/gensio/
H A Dgensio.mk29 GENSIO_CONF_OPTS += --with-pthreads
31 GENSIO_CONF_OPTS += --without-pthreads
/OK3568_Linux_fs/buildroot/package/unbound/
H A Dunbound.mk32 UNBOUND_CONF_OPTS += --with-pthreads
34 UNBOUND_CONF_OPTS += --without-pthreads
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/vlc/vlc/
H A D0004-Use-packageconfig-to-detect-mmal-support.patch26 - CPPFLAGS="${CPPFLAGS} -isystem /opt/vc/include -isystem /opt/vc/include/interface/vcos/pthreads
32 …mal],[ -isystem /opt/vc/include -isystem /opt/vc/include/interface/vcos/pthreads -isystem /opt/vc/…
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/ffmpeg/
H A Dffmpeg_5.0.1.bb49 alsa bzlib lzma pic pthreads shared theora zlib \
92 PACKAGECONFIG[pthreads] = "--enable-pthreads,--disable-pthreads"
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-dbs/psqlodbc/files/
H A Dpsqlodbc-remove-some-checks-for-cross-compiling.patch80 @@ -176,18 +138,10 @@ PGAC_ARG_BOOL(enable, pthreads, yes,
108 - AC_CHECK_LIB(pthreads, pthread_create,
/OK3568_Linux_fs/buildroot/package/libfastjson/
H A DConfig.in3 # uses the __sync_*_4 intrisics, or pthreads to emulate atomicity
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/pbzip2/
H A Dpbzip2_1.1.13.bb3 file compressor that uses pthreads and achieves near-linear speedup on SMP \
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-dbs/psqlodbc/
H A Dpsqlodbc.inc26 --enable-pthreads \
/OK3568_Linux_fs/buildroot/package/omxplayer/
H A D0001-Update-Makefile-to-be-compatible-with-buildroot.patch32 …type2 -isystem$(SDKSTAGE)/opt/vc/include -isystem$(SDKSTAGE)/opt/vc/include/interface/vcos/pthreads
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.sched33 - The semantics are somewhat based on those of pthreads, but NOT
/OK3568_Linux_fs/buildroot/package/libwebsock/
H A D0001-Switch-to-use-pkg-config-to-detect-libevent-and-open.patch34 echo "pthreads required, failing"
/OK3568_Linux_fs/kernel/tools/perf/bench/
H A Dnuma.c1304 pthread_t *pthreads; in worker_process() local
1323 pthreads = zalloc(g->p.nr_threads * sizeof(pthread_t)); in worker_process()
1343 ret = pthread_create(pthreads + t, NULL, worker_thread, td); in worker_process()
1348 ret = pthread_join(pthreads[t], NULL); in worker_process()
1353 free(pthreads); in worker_process()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/polkit/polkit/
H A D0003-Added-support-for-duktape-as-JS-engine.patch179 +ax_pthread_flags="pthreads none -Kthread -pthread -pthreads -mthreads pthread --thread-safe -mt pt…
184 +# pthreads: AIX (must check this before -lpthread)
190 +# -pthreads: Solaris/gcc (Note: HP C also rejects)
192 +# doesn't hurt to check since this sometimes defines pthreads and
232 …AC_MSG_WARN([IBM z/OS requires -D_OPEN_THREADS or -D_UNIX03_THREADS to enable pthreads support.])])
238 + # (non-functional) versions of the pthreads routines, so link-based
243 + # standard Solaris way of linking pthreads (-mt -lpthread).
268 +# GCC generally uses -pthread, or -pthreads on some platforms (e.g. SPARC)
279 + [ax_pthread_flags="-pthread,-lpthread -pthread -pthreads $ax_pthread_flags"])
288 +# definitions is, on some systems, a strong hint that pthreads support is
[all …]
/OK3568_Linux_fs/buildroot/package/softether/
H A D0001-Create-autotools-plumbing-for-SoftEther.patch621 +ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --t…
626 +# pthreads: AIX (must check this before -lpthread)
633 +# -pthreads: Solaris/gcc
636 +# doesn't hurt to check since this sometimes defines pthreads too;
638 +# ... -mt is also the pthreads flag for HP/aCC
647 + # (non-functional) versions of the pthreads routines, so link-based
648 + # tests will erroneously succeed. (We need to link with -pthreads/-mt/
652 + # we'll just look for -pthreads and -lpthread first:
654 + ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags"
681 + AC_MSG_CHECKING([whether pthreads work without any flags])
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/
H A Dlibsdl_1.2.15.bb52 --enable-input-events --enable-pthreads \
/OK3568_Linux_fs/buildroot/package/ffmpeg/
H A Dffmpeg.mk193 FFMPEG_CONF_OPTS += --enable-pthreads
195 FFMPEG_CONF_OPTS += --disable-pthreads
/OK3568_Linux_fs/buildroot/package/c-icap/
H A D0001-Required-fixes-to-compile-and-run-under-cygwin.patch61 ## FreeBSD has pthreads rwlocks from version 3 (I think)
62 …# AC_DEFINE(HAVE_PTHREADS_RWLOCK,1,[Define HAVE_PTHREADS_RWLOCK if pthreads library supports rwloc…
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/frr/frr/
H A DCVE-2022-37035.patch4 Subject: [PATCH] bgpd: avoid notify race between io and main pthreads
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/build/
H A D0001-Riscv-Add-risc-v-Android-config-header.patch54 + * HAVE_PTHREADS - use the pthreads library.
/OK3568_Linux_fs/kernel/Documentation/driver-api/usb/
H A Dgadget.rst424 Familiar tools like GDB and pthreads can be used to develop and debug

12