noderb 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/noderb_extension/libuv/AUTHORS +11 -1
- data/ext/noderb_extension/libuv/LICENSE +0 -8
- data/ext/noderb_extension/libuv/Makefile +5 -5
- data/ext/noderb_extension/libuv/README +11 -6
- data/ext/noderb_extension/libuv/common.gypi +158 -7
- data/ext/noderb_extension/libuv/config-unix.mk +34 -26
- data/ext/noderb_extension/libuv/gyp_uv +22 -4
- data/ext/noderb_extension/libuv/include/{eio.h → uv-private/eio.h} +2 -2
- data/ext/noderb_extension/libuv/include/{uv-unix.h → uv-private/uv-unix.h} +40 -0
- data/ext/noderb_extension/libuv/include/{uv-win.h → uv-private/uv-win.h} +96 -14
- data/ext/noderb_extension/libuv/include/uv.h +508 -83
- data/ext/noderb_extension/libuv/src/unix/cares.c +185 -0
- data/ext/noderb_extension/libuv/src/unix/core.c +828 -0
- data/ext/noderb_extension/libuv/src/{eio → unix/eio}/config_darwin.h +4 -0
- data/ext/noderb_extension/libuv/src/{eio → unix/eio}/config_linux.h +5 -15
- data/ext/noderb_extension/libuv/src/{eio → unix/eio}/eio.c +23 -2
- data/ext/noderb_extension/libuv/src/unix/error.c +102 -0
- data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config_linux.h +26 -15
- data/ext/noderb_extension/libuv/src/unix/fs.c +562 -0
- data/ext/noderb_extension/libuv/src/unix/internal.h +75 -0
- data/ext/noderb_extension/libuv/src/unix/pipe.c +282 -0
- data/ext/noderb_extension/libuv/src/unix/process.c +287 -0
- data/ext/noderb_extension/libuv/src/unix/stream.c +727 -0
- data/ext/noderb_extension/libuv/src/unix/tcp.c +226 -0
- data/ext/noderb_extension/libuv/src/unix/udp.c +524 -0
- data/ext/noderb_extension/libuv/src/{uv-eio.c → unix/uv-eio.c} +48 -27
- data/ext/noderb_extension/libuv/src/{uv-eio.h → unix/uv-eio.h} +1 -1
- data/ext/noderb_extension/libuv/src/uv-common.c +24 -14
- data/ext/noderb_extension/libuv/src/uv-common.h +12 -7
- data/ext/noderb_extension/libuv/src/win/async.c +14 -16
- data/ext/noderb_extension/libuv/src/win/cares.c +64 -79
- data/ext/noderb_extension/libuv/src/win/core.c +105 -53
- data/ext/noderb_extension/libuv/src/win/error.c +23 -13
- data/ext/noderb_extension/libuv/src/win/fs.c +807 -0
- data/ext/noderb_extension/libuv/src/win/getaddrinfo.c +61 -41
- data/ext/noderb_extension/libuv/src/win/handle.c +56 -30
- data/ext/noderb_extension/libuv/src/win/internal.h +134 -95
- data/ext/noderb_extension/libuv/src/win/loop-watcher.c +21 -18
- data/ext/noderb_extension/libuv/src/win/pipe.c +313 -158
- data/ext/noderb_extension/libuv/src/win/process.c +117 -131
- data/ext/noderb_extension/libuv/src/win/req.c +55 -31
- data/ext/noderb_extension/libuv/src/win/stdio.c +5 -5
- data/ext/noderb_extension/libuv/src/win/stream.c +19 -14
- data/ext/noderb_extension/libuv/src/win/tcp.c +278 -336
- data/ext/noderb_extension/libuv/src/win/threadpool.c +73 -0
- data/ext/noderb_extension/libuv/src/win/timer.c +44 -37
- data/ext/noderb_extension/libuv/src/win/udp.c +592 -0
- data/ext/noderb_extension/libuv/src/win/util.c +20 -6
- data/ext/noderb_extension/libuv/src/win/winapi.c +23 -6
- data/ext/noderb_extension/libuv/src/win/winapi.h +4206 -0
- data/ext/noderb_extension/libuv/src/win/winsock.c +270 -0
- data/ext/noderb_extension/libuv/src/win/winsock.h +134 -0
- data/ext/noderb_extension/libuv/test/benchmark-ares.c +10 -6
- data/ext/noderb_extension/libuv/test/benchmark-getaddrinfo.c +10 -7
- data/ext/noderb_extension/libuv/test/benchmark-list.h +21 -0
- data/ext/noderb_extension/libuv/test/benchmark-ping-pongs.c +11 -7
- data/ext/noderb_extension/libuv/test/benchmark-pound.c +147 -58
- data/ext/noderb_extension/libuv/test/benchmark-pump.c +29 -23
- data/ext/noderb_extension/libuv/test/benchmark-spawn.c +13 -10
- data/ext/noderb_extension/libuv/test/benchmark-udp-packet-storm.c +250 -0
- data/ext/noderb_extension/libuv/test/dns-server.c +11 -6
- data/ext/noderb_extension/libuv/test/echo-server.c +30 -22
- data/ext/noderb_extension/libuv/test/test-async.c +3 -3
- data/ext/noderb_extension/libuv/test/test-callback-stack.c +6 -6
- data/ext/noderb_extension/libuv/test/test-connection-fail.c +6 -5
- data/ext/noderb_extension/libuv/test/test-delayed-accept.c +13 -13
- data/ext/noderb_extension/libuv/test/test-fs.c +715 -0
- data/ext/noderb_extension/libuv/test/test-getaddrinfo.c +11 -8
- data/ext/noderb_extension/libuv/test/test-gethostbyname.c +8 -9
- data/ext/noderb_extension/libuv/test/test-getsockname.c +142 -16
- data/ext/noderb_extension/libuv/test/test-idle.c +4 -3
- data/ext/noderb_extension/libuv/test/test-list.h +29 -2
- data/ext/noderb_extension/libuv/test/test-loop-handles.c +9 -8
- data/ext/noderb_extension/libuv/test/test-ping-pong.c +9 -9
- data/ext/noderb_extension/libuv/test/test-pipe-bind-error.c +18 -14
- data/ext/noderb_extension/libuv/test/test-ref.c +17 -16
- data/ext/noderb_extension/libuv/test/test-shutdown-eof.c +5 -5
- data/ext/noderb_extension/libuv/test/test-spawn.c +17 -17
- data/ext/noderb_extension/libuv/test/test-tcp-bind-error.c +24 -18
- data/ext/noderb_extension/libuv/test/test-tcp-bind6-error.c +19 -14
- data/ext/noderb_extension/libuv/test/test-tcp-writealot.c +6 -5
- data/ext/noderb_extension/libuv/test/test-threadpool.c +59 -0
- data/ext/noderb_extension/libuv/test/test-timer-again.c +15 -12
- data/ext/noderb_extension/libuv/test/test-timer.c +8 -8
- data/ext/noderb_extension/libuv/test/test-udp-dgram-too-big.c +88 -0
- data/ext/noderb_extension/libuv/test/test-udp-ipv6.c +158 -0
- data/ext/noderb_extension/libuv/test/test-udp-send-and-recv.c +210 -0
- data/ext/noderb_extension/libuv/{all.gyp → uv.gyp} +75 -77
- data/ext/noderb_extension/libuv/vcbuild.bat +93 -0
- data/ext/noderb_extension/noderb.c +13 -0
- data/ext/noderb_extension/noderb_common.h +2 -1
- data/ext/noderb_extension/noderb_defer.c +54 -0
- data/ext/noderb_extension/noderb_defer.h +15 -0
- data/ext/noderb_extension/noderb_dns.c +1 -1
- data/ext/noderb_extension/noderb_fs.c +277 -0
- data/ext/noderb_extension/noderb_fs.h +27 -0
- data/ext/noderb_extension/noderb_process.c +5 -5
- data/ext/noderb_extension/noderb_tcp.c +10 -6
- data/ext/noderb_extension/noderb_timers.c +1 -1
- data/ext/noderb_extension/noderb_tools.c +42 -8
- data/ext/noderb_extension/noderb_tools.h +3 -1
- data/lib/noderb/defer.rb +25 -0
- data/lib/noderb/file.rb +119 -0
- data/lib/noderb/fs.rb +72 -0
- data/lib/noderb/version.rb +1 -1
- data/lib/noderb.rb +8 -0
- metadata +102 -266
- data/ext/noderb_extension/libuv/BSDmakefile +0 -2
- data/ext/noderb_extension/libuv/create-msvs-files.bat +0 -21
- data/ext/noderb_extension/libuv/deps/pthread-win32/ANNOUNCE +0 -482
- data/ext/noderb_extension/libuv/deps/pthread-win32/BUGS +0 -141
- data/ext/noderb_extension/libuv/deps/pthread-win32/Bmakefile +0 -268
- data/ext/noderb_extension/libuv/deps/pthread-win32/CONTRIBUTORS +0 -140
- data/ext/noderb_extension/libuv/deps/pthread-win32/COPYING +0 -150
- data/ext/noderb_extension/libuv/deps/pthread-win32/COPYING.LIB +0 -504
- data/ext/noderb_extension/libuv/deps/pthread-win32/ChangeLog +0 -5194
- data/ext/noderb_extension/libuv/deps/pthread-win32/FAQ +0 -451
- data/ext/noderb_extension/libuv/deps/pthread-win32/GNUmakefile +0 -593
- data/ext/noderb_extension/libuv/deps/pthread-win32/MAINTAINERS +0 -4
- data/ext/noderb_extension/libuv/deps/pthread-win32/Makefile +0 -516
- data/ext/noderb_extension/libuv/deps/pthread-win32/NEWS +0 -1245
- data/ext/noderb_extension/libuv/deps/pthread-win32/Nmakefile +0 -24
- data/ext/noderb_extension/libuv/deps/pthread-win32/Nmakefile.tests +0 -260
- data/ext/noderb_extension/libuv/deps/pthread-win32/PROGRESS +0 -4
- data/ext/noderb_extension/libuv/deps/pthread-win32/README +0 -601
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.Borland +0 -57
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.CV +0 -3036
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.NONPORTABLE +0 -783
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.Watcom +0 -62
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.WinCE +0 -6
- data/ext/noderb_extension/libuv/deps/pthread-win32/TODO +0 -7
- data/ext/noderb_extension/libuv/deps/pthread-win32/WinCE-PORT +0 -222
- data/ext/noderb_extension/libuv/deps/pthread-win32/attr.c +0 -53
- data/ext/noderb_extension/libuv/deps/pthread-win32/autostatic.c +0 -69
- data/ext/noderb_extension/libuv/deps/pthread-win32/barrier.c +0 -47
- data/ext/noderb_extension/libuv/deps/pthread-win32/build/all.gyp +0 -207
- data/ext/noderb_extension/libuv/deps/pthread-win32/builddmc.bat +0 -9
- data/ext/noderb_extension/libuv/deps/pthread-win32/cancel.c +0 -44
- data/ext/noderb_extension/libuv/deps/pthread-win32/cleanup.c +0 -148
- data/ext/noderb_extension/libuv/deps/pthread-win32/condvar.c +0 -50
- data/ext/noderb_extension/libuv/deps/pthread-win32/config.h +0 -153
- data/ext/noderb_extension/libuv/deps/pthread-win32/context.h +0 -74
- data/ext/noderb_extension/libuv/deps/pthread-win32/create.c +0 -308
- data/ext/noderb_extension/libuv/deps/pthread-win32/dll.c +0 -92
- data/ext/noderb_extension/libuv/deps/pthread-win32/errno.c +0 -94
- data/ext/noderb_extension/libuv/deps/pthread-win32/exit.c +0 -44
- data/ext/noderb_extension/libuv/deps/pthread-win32/fork.c +0 -39
- data/ext/noderb_extension/libuv/deps/pthread-win32/global.c +0 -107
- data/ext/noderb_extension/libuv/deps/pthread-win32/implement.h +0 -944
- data/ext/noderb_extension/libuv/deps/pthread-win32/misc.c +0 -50
- data/ext/noderb_extension/libuv/deps/pthread-win32/mutex.c +0 -62
- data/ext/noderb_extension/libuv/deps/pthread-win32/need_errno.h +0 -145
- data/ext/noderb_extension/libuv/deps/pthread-win32/nonportable.c +0 -47
- data/ext/noderb_extension/libuv/deps/pthread-win32/private.c +0 -54
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.c +0 -66
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.dsp +0 -142
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.dsw +0 -29
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.h +0 -1368
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_destroy.c +0 -79
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getdetachstate.c +0 -86
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getinheritsched.c +0 -51
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getschedparam.c +0 -52
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getschedpolicy.c +0 -61
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getscope.c +0 -54
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getstackaddr.c +0 -97
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getstacksize.c +0 -100
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_init.c +0 -117
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setdetachstate.c +0 -91
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setinheritsched.c +0 -57
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setschedparam.c +0 -63
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setschedpolicy.c +0 -55
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setscope.c +0 -62
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setstackaddr.c +0 -97
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setstacksize.c +0 -110
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrier_destroy.c +0 -103
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrier_init.c +0 -69
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrier_wait.c +0 -104
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_destroy.c +0 -83
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_getpshared.c +0 -95
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_init.c +0 -85
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_setpshared.c +0 -119
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cancel.c +0 -189
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_destroy.c +0 -253
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_init.c +0 -167
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_signal.c +0 -231
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_wait.c +0 -567
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_destroy.c +0 -86
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_getpshared.c +0 -97
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_init.c +0 -87
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_setpshared.c +0 -117
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_delay_np.c +0 -172
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_detach.c +0 -136
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_equal.c +0 -76
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_exit.c +0 -106
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getconcurrency.c +0 -45
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getschedparam.c +0 -75
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getspecific.c +0 -87
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getunique_np.c +0 -47
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getw32threadhandle_np.c +0 -65
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_join.c +0 -157
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_key_create.c +0 -108
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_key_delete.c +0 -125
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_kill.c +0 -105
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_consistent.c +0 -187
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_destroy.c +0 -148
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_init.c +0 -130
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_lock.c +0 -269
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_timedlock.c +0 -324
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_trylock.c +0 -154
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_unlock.c +0 -175
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_destroy.c +0 -83
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_getkind_np.c +0 -44
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_getpshared.c +0 -95
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_getrobust.c +0 -113
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_gettype.c +0 -56
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_init.c +0 -86
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_setkind_np.c +0 -44
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_setpshared.c +0 -119
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_setrobust.c +0 -119
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_settype.c +0 -143
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_num_processors_np.c +0 -56
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_once.c +0 -79
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_destroy.c +0 -143
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_init.c +0 -109
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_rdlock.c +0 -102
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_timedrdlock.c +0 -109
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_timedwrlock.c +0 -139
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_tryrdlock.c +0 -102
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_trywrlock.c +0 -122
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_unlock.c +0 -93
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_wrlock.c +0 -133
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_destroy.c +0 -84
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_getpshared.c +0 -97
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_init.c +0 -83
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_setpshared.c +0 -120
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_self.c +0 -141
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setcancelstate.c +0 -125
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setcanceltype.c +0 -126
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setconcurrency.c +0 -53
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setschedparam.c +0 -123
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setspecific.c +0 -167
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_destroy.c +0 -111
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_init.c +0 -123
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_lock.c +0 -80
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_trylock.c +0 -77
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_unlock.c +0 -71
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_testcancel.c +0 -103
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_timechange_handler_np.c +0 -108
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_win32_attach_detach_np.c +0 -258
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_MCS_lock.c +0 -278
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_callUserDestroyRoutines.c +0 -232
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_calloc.c +0 -56
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_cond_check_need_init.c +0 -78
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_getprocessors.c +0 -91
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_is_attr.c +0 -47
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_mutex_check_need_init.c +0 -92
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_new.c +0 -94
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_processInitialize.c +0 -92
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_processTerminate.c +0 -105
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_relmillisecs.c +0 -132
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_reuse.c +0 -151
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_rwlock_cancelwrwait.c +0 -50
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_rwlock_check_need_init.c +0 -77
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_semwait.c +0 -135
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_spinlock_check_need_init.c +0 -78
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_threadDestroy.c +0 -79
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_threadStart.c +0 -357
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_throw.c +0 -189
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_timespec.c +0 -83
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_tkAssocCreate.c +0 -118
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_tkAssocDestroy.c +0 -114
- data/ext/noderb_extension/libuv/deps/pthread-win32/rwlock.c +0 -51
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched.c +0 -53
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched.h +0 -183
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_get_priority_max.c +0 -134
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_get_priority_min.c +0 -135
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_getscheduler.c +0 -71
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_setscheduler.c +0 -83
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_yield.c +0 -71
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_close.c +0 -58
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_destroy.c +0 -144
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_getvalue.c +0 -110
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_init.c +0 -169
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_open.c +0 -58
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_post.c +0 -128
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_post_multiple.c +0 -142
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_timedwait.c +0 -238
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_trywait.c +0 -117
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_unlink.c +0 -58
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_wait.c +0 -187
- data/ext/noderb_extension/libuv/deps/pthread-win32/semaphore.c +0 -69
- data/ext/noderb_extension/libuv/deps/pthread-win32/semaphore.h +0 -169
- data/ext/noderb_extension/libuv/deps/pthread-win32/signal.c +0 -179
- data/ext/noderb_extension/libuv/deps/pthread-win32/spin.c +0 -46
- data/ext/noderb_extension/libuv/deps/pthread-win32/sync.c +0 -43
- data/ext/noderb_extension/libuv/deps/pthread-win32/tsd.c +0 -44
- data/ext/noderb_extension/libuv/deps/pthread-win32/version.rc +0 -388
- data/ext/noderb_extension/libuv/deps/pthread-win32/w32_CancelableWait.c +0 -161
- data/ext/noderb_extension/libuv/doc/iocp-links.html +0 -574
- data/ext/noderb_extension/libuv/src/uv-unix.c +0 -2421
- data/ext/noderb_extension/libuv/src/win/ntdll.h +0 -130
- /data/ext/noderb_extension/libuv/include/{ev.h → uv-private/ev.h} +0 -0
- /data/ext/noderb_extension/libuv/include/{ngx-queue.h → uv-private/ngx-queue.h} +0 -0
- /data/ext/noderb_extension/libuv/include/{tree.h → uv-private/tree.h} +0 -0
- /data/ext/noderb_extension/libuv/src/{uv-cygwin.c → unix/cygwin.c} +0 -0
- /data/ext/noderb_extension/libuv/src/{uv-darwin.c → unix/darwin.c} +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/Changes +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/LICENSE +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/Makefile.am +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/aclocal.m4 +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/autogen.sh +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/config.h.in +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/config_cygwin.h +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/config_freebsd.h +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/config_sunos.h +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/configure.ac +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/demo.c +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/ecb.h +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/eio.3 +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/eio.pod +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/libeio.m4 +0 -0
- /data/ext/noderb_extension/libuv/src/{eio → unix/eio}/xthread.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/Changes +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/LICENSE +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/Makefile.am +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/Makefile.in +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/README +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/aclocal.m4 +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/autogen.sh +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config.guess +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config.h.in +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config.sub +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config_cygwin.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config_darwin.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config_freebsd.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/config_sunos.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/configure +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/configure.ac +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/depcomp +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev++.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev.3 +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev.pod +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_epoll.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_kqueue.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_poll.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_port.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_select.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_vars.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_win32.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ev_wrap.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/event.c +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/event.h +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/install-sh +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/libev.m4 +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/ltmain.sh +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/missing +0 -0
- /data/ext/noderb_extension/libuv/src/{ev → unix/ev}/mkinstalldirs +0 -0
- /data/ext/noderb_extension/libuv/src/{uv-freebsd.c → unix/freebsd.c} +0 -0
- /data/ext/noderb_extension/libuv/src/{uv-linux.c → unix/linux.c} +0 -0
- /data/ext/noderb_extension/libuv/src/{uv-sunos.c → unix/sunos.c} +0 -0
|
@@ -1,268 +0,0 @@
|
|
|
1
|
-
# This makefile is compatible with BCB make. Use "make -fBMakefile" to compile.
|
|
2
|
-
#
|
|
3
|
-
# The variables $DLLDEST and $LIBDEST hold the destination directories for the
|
|
4
|
-
# dll and the lib, respectively. Probably all that needs to change is $DEVROOT.
|
|
5
|
-
#
|
|
6
|
-
# Currently only the recommended pthreadBC.dll is built by this makefile.
|
|
7
|
-
#
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
DLL_VER = 2
|
|
11
|
-
|
|
12
|
-
DEVROOT = .
|
|
13
|
-
|
|
14
|
-
DLLDEST = $(DEVROOT)\DLL
|
|
15
|
-
LIBDEST = $(DEVROOT)\DLL
|
|
16
|
-
|
|
17
|
-
DLLS = pthreadBC$(DLL_VER).dll
|
|
18
|
-
|
|
19
|
-
OPTIM = /O2
|
|
20
|
-
|
|
21
|
-
RC = brcc32
|
|
22
|
-
RCFLAGS = -i.
|
|
23
|
-
|
|
24
|
-
CFLAGS = /q /I. /D_WIN32_WINNT=0x400 /DHAVE_PTW32_CONFIG_H=1 /4 /tWD /tWM \
|
|
25
|
-
/w-aus /w-asc /w-par
|
|
26
|
-
|
|
27
|
-
#C cleanup code
|
|
28
|
-
BCFLAGS = $(PTW32_FLAGS) $(CFLAGS)
|
|
29
|
-
|
|
30
|
-
# Agregate modules for inlinability
|
|
31
|
-
DLL_OBJS = \
|
|
32
|
-
attr.obj \
|
|
33
|
-
barrier.obj \
|
|
34
|
-
cancel.obj \
|
|
35
|
-
cleanup.obj \
|
|
36
|
-
condvar.obj \
|
|
37
|
-
create.obj \
|
|
38
|
-
dll.obj \
|
|
39
|
-
errno.obj \
|
|
40
|
-
exit.obj \
|
|
41
|
-
fork.obj \
|
|
42
|
-
global.obj \
|
|
43
|
-
misc.obj \
|
|
44
|
-
mutex.obj \
|
|
45
|
-
nonportable.obj \
|
|
46
|
-
private.obj \
|
|
47
|
-
rwlock.obj \
|
|
48
|
-
sched.obj \
|
|
49
|
-
semaphore.obj \
|
|
50
|
-
signal.obj \
|
|
51
|
-
spin.obj \
|
|
52
|
-
sync.obj \
|
|
53
|
-
tsd.obj
|
|
54
|
-
|
|
55
|
-
INCL = config.h implement.h semaphore.h pthread.h need_errno.h
|
|
56
|
-
|
|
57
|
-
ATTR_SRCS = \
|
|
58
|
-
pthread_attr_init.c \
|
|
59
|
-
pthread_attr_destroy.c \
|
|
60
|
-
pthread_attr_getdetachstate.c \
|
|
61
|
-
pthread_attr_setdetachstate.c \
|
|
62
|
-
pthread_attr_getstackaddr.c \
|
|
63
|
-
pthread_attr_setstackaddr.c \
|
|
64
|
-
pthread_attr_getstacksize.c \
|
|
65
|
-
pthread_attr_setstacksize.c \
|
|
66
|
-
pthread_attr_getscope.c \
|
|
67
|
-
pthread_attr_setscope.c
|
|
68
|
-
|
|
69
|
-
BARRIER_SRCS = \
|
|
70
|
-
pthread_barrier_init.c \
|
|
71
|
-
pthread_barrier_destroy.c \
|
|
72
|
-
pthread_barrier_wait.c \
|
|
73
|
-
pthread_barrierattr_init.c \
|
|
74
|
-
pthread_barrierattr_destroy.c \
|
|
75
|
-
pthread_barrierattr_setpshared.c \
|
|
76
|
-
pthread_barrierattr_getpshared.c
|
|
77
|
-
|
|
78
|
-
CANCEL_SRCS = \
|
|
79
|
-
pthread_setcancelstate.c \
|
|
80
|
-
pthread_setcanceltype.c \
|
|
81
|
-
pthread_testcancel.c \
|
|
82
|
-
pthread_cancel.c
|
|
83
|
-
|
|
84
|
-
CONDVAR_SRCS = \
|
|
85
|
-
ptw32_cond_check_need_init.c \
|
|
86
|
-
pthread_condattr_destroy.c \
|
|
87
|
-
pthread_condattr_getpshared.c \
|
|
88
|
-
pthread_condattr_init.c \
|
|
89
|
-
pthread_condattr_setpshared.c \
|
|
90
|
-
pthread_cond_destroy.c \
|
|
91
|
-
pthread_cond_init.c \
|
|
92
|
-
pthread_cond_signal.c \
|
|
93
|
-
pthread_cond_wait.c
|
|
94
|
-
|
|
95
|
-
EXIT_SRCS = \
|
|
96
|
-
pthread_exit.c
|
|
97
|
-
|
|
98
|
-
MISC_SRCS = \
|
|
99
|
-
pthread_equal.c \
|
|
100
|
-
pthread_getconcurrency.c \
|
|
101
|
-
pthread_once.c \
|
|
102
|
-
pthread_self.c \
|
|
103
|
-
pthread_setconcurrency.c \
|
|
104
|
-
ptw32_calloc.c \
|
|
105
|
-
ptw32_MCS_lock.c \
|
|
106
|
-
ptw32_new.c \
|
|
107
|
-
w32_CancelableWait.c
|
|
108
|
-
|
|
109
|
-
MUTEX_SRCS = \
|
|
110
|
-
ptw32_mutex_check_need_init.c \
|
|
111
|
-
pthread_mutex_init.c \
|
|
112
|
-
pthread_mutex_destroy.c \
|
|
113
|
-
pthread_mutexattr_init.c \
|
|
114
|
-
pthread_mutexattr_destroy.c \
|
|
115
|
-
pthread_mutexattr_getpshared.c \
|
|
116
|
-
pthread_mutexattr_setpshared.c \
|
|
117
|
-
pthread_mutexattr_settype.c \
|
|
118
|
-
pthread_mutexattr_gettype.c \
|
|
119
|
-
pthread_mutexattr_setrobust.c \
|
|
120
|
-
pthread_mutexattr_getrobust.c \
|
|
121
|
-
pthread_mutex_lock.c \
|
|
122
|
-
pthread_mutex_timedlock.c \
|
|
123
|
-
pthread_mutex_unlock.c \
|
|
124
|
-
pthread_mutex_trylock.c \
|
|
125
|
-
pthread_mutex_consistent.c
|
|
126
|
-
|
|
127
|
-
NONPORTABLE_SRCS = \
|
|
128
|
-
pthread_mutexattr_setkind_np.c \
|
|
129
|
-
pthread_mutexattr_getkind_np.c \
|
|
130
|
-
pthread_getw32threadhandle_np.c \
|
|
131
|
-
pthread_delay_np.c \
|
|
132
|
-
pthread_num_processors_np.c \
|
|
133
|
-
pthread_win32_attach_detach_np.c \
|
|
134
|
-
pthread_timechange_handler_np.c
|
|
135
|
-
|
|
136
|
-
PRIVATE_SRCS = \
|
|
137
|
-
ptw32_is_attr.c \
|
|
138
|
-
ptw32_processInitialize.c \
|
|
139
|
-
ptw32_processTerminate.c \
|
|
140
|
-
ptw32_threadStart.c \
|
|
141
|
-
ptw32_threadDestroy.c \
|
|
142
|
-
ptw32_tkAssocCreate.c \
|
|
143
|
-
ptw32_tkAssocDestroy.c \
|
|
144
|
-
ptw32_callUserDestroyRoutines.c \
|
|
145
|
-
ptw32_timespec.c \
|
|
146
|
-
ptw32_relmillisecs.c \
|
|
147
|
-
ptw32_throw.c \
|
|
148
|
-
ptw32_getprocessors.c
|
|
149
|
-
|
|
150
|
-
RWLOCK_SRCS = \
|
|
151
|
-
ptw32_rwlock_check_need_init.c \
|
|
152
|
-
ptw32_rwlock_cancelwrwait.c \
|
|
153
|
-
pthread_rwlock_init.c \
|
|
154
|
-
pthread_rwlock_destroy.c \
|
|
155
|
-
pthread_rwlockattr_init.c \
|
|
156
|
-
pthread_rwlockattr_destroy.c \
|
|
157
|
-
pthread_rwlockattr_getpshared.c \
|
|
158
|
-
pthread_rwlockattr_setpshared.c \
|
|
159
|
-
pthread_rwlock_rdlock.c \
|
|
160
|
-
pthread_rwlock_timedrdlock.c \
|
|
161
|
-
pthread_rwlock_wrlock.c \
|
|
162
|
-
pthread_rwlock_timedwrlock.c \
|
|
163
|
-
pthread_rwlock_unlock.c \
|
|
164
|
-
pthread_rwlock_tryrdlock.c \
|
|
165
|
-
pthread_rwlock_trywrlock.c
|
|
166
|
-
|
|
167
|
-
SCHED_SRCS = \
|
|
168
|
-
pthread_attr_setschedpolicy.c \
|
|
169
|
-
pthread_attr_getschedpolicy.c \
|
|
170
|
-
pthread_attr_setschedparam.c \
|
|
171
|
-
pthread_attr_getschedparam.c \
|
|
172
|
-
pthread_attr_setinheritsched.c \
|
|
173
|
-
pthread_attr_getinheritsched.c \
|
|
174
|
-
pthread_setschedparam.c \
|
|
175
|
-
pthread_getschedparam.c \
|
|
176
|
-
sched_get_priority_max.c \
|
|
177
|
-
sched_get_priority_min.c \
|
|
178
|
-
sched_setscheduler.c \
|
|
179
|
-
sched_getscheduler.c \
|
|
180
|
-
sched_yield.c
|
|
181
|
-
|
|
182
|
-
SEMAPHORE_SRCS = \
|
|
183
|
-
sem_init.c \
|
|
184
|
-
sem_destroy.c \
|
|
185
|
-
sem_trywait.c \
|
|
186
|
-
sem_timedwait.c \
|
|
187
|
-
sem_wait.c \
|
|
188
|
-
sem_post.c \
|
|
189
|
-
sem_post_multiple.c \
|
|
190
|
-
sem_getvalue.c \
|
|
191
|
-
sem_open.c \
|
|
192
|
-
sem_close.c \
|
|
193
|
-
sem_unlink.c
|
|
194
|
-
|
|
195
|
-
SPIN_SRCS = \
|
|
196
|
-
ptw32_spinlock_check_need_init.c \
|
|
197
|
-
pthread_spin_init.c \
|
|
198
|
-
pthread_spin_destroy.c \
|
|
199
|
-
pthread_spin_lock.c \
|
|
200
|
-
pthread_spin_unlock.c \
|
|
201
|
-
pthread_spin_trylock.c
|
|
202
|
-
|
|
203
|
-
SYNC_SRCS = \
|
|
204
|
-
pthread_detach.c \
|
|
205
|
-
pthread_join.c
|
|
206
|
-
|
|
207
|
-
TSD_SRCS = \
|
|
208
|
-
pthread_key_create.c \
|
|
209
|
-
pthread_key_delete.c \
|
|
210
|
-
pthread_setspecific.c \
|
|
211
|
-
pthread_getspecific.c
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
all: clean $(DLLS)
|
|
215
|
-
|
|
216
|
-
realclean: clean
|
|
217
|
-
if exist pthread*.dll del pthread*.dll
|
|
218
|
-
if exist pthread*.lib del pthread*.lib
|
|
219
|
-
if exist *.stamp del *.stamp
|
|
220
|
-
|
|
221
|
-
clean:
|
|
222
|
-
if exist *.obj del *.obj
|
|
223
|
-
if exist *.ilk del *.ilk
|
|
224
|
-
if exist *.ilc del *.ilc
|
|
225
|
-
if exist *.ild del *.ild
|
|
226
|
-
if exist *.ilf del *.ilf
|
|
227
|
-
if exist *.ils del *.ils
|
|
228
|
-
if exist *.tds del *.tds
|
|
229
|
-
if exist *.pdb del *.pdb
|
|
230
|
-
if exist *.exp del *.exp
|
|
231
|
-
if exist *.map del *.map
|
|
232
|
-
if exist *.o del *.o
|
|
233
|
-
if exist *.i del *.i
|
|
234
|
-
if exist *.res del *.res
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
install: $(DLLS)
|
|
238
|
-
copy pthread*.dll $(DLLDEST)
|
|
239
|
-
copy pthread*.lib $(LIBDEST)
|
|
240
|
-
|
|
241
|
-
$(DLLS): $(DLL_OBJS) version.res
|
|
242
|
-
ilink32 /Tpd /Gi c0d32x.obj $(DLL_OBJS), \
|
|
243
|
-
$@, ,\
|
|
244
|
-
cw32mti.lib import32.lib, ,\
|
|
245
|
-
version.res
|
|
246
|
-
|
|
247
|
-
.c.obj:
|
|
248
|
-
$(CC) $(OPTIM) $(BCFLAGS) -c $<
|
|
249
|
-
|
|
250
|
-
.rc.res:
|
|
251
|
-
$(RC) $(RCFLAGS) $<
|
|
252
|
-
|
|
253
|
-
attr.obj: attr.c $(ATTR_SRCS) $(INCL)
|
|
254
|
-
barrier.obj: barrier.c $(BARRIER_SRCS) $(INCL)
|
|
255
|
-
cancel.obj: cancel.c $(CANCEL_SRCS) $(INCL)
|
|
256
|
-
condvar.obj: condvar.c $(CONDVAR_SRCS) $(INCL)
|
|
257
|
-
exit.obj: exit.c $(EXIT_SRCS) $(INCL)
|
|
258
|
-
misc.obj: misc.c $(MISC_SRCS) $(INCL)
|
|
259
|
-
mutex.obj: mutex.c $(MUTEX_SRCS) $(INCL)
|
|
260
|
-
nonportable.obj: nonportable.c $(NONPORTABLE_SRCS) $(INCL)
|
|
261
|
-
private.obj: private.c $(PRIVATE_SRCS) $(INCL)
|
|
262
|
-
rwlock.obj: rwlock.c $(RWLOCK_SRCS) $(INCL)
|
|
263
|
-
sched.obj: sched.c $(SCHED_SRCS) $(INCL)
|
|
264
|
-
semaphore.obj: semaphore.c $(SEMAPHORE_SRCS) $(INCL)
|
|
265
|
-
spin.obj: spin.c $(SPIN_SRCS) $(INCL)
|
|
266
|
-
sync.obj: sync.c $(SYNC_SRCS) $(INCL)
|
|
267
|
-
tsd.obj: tsd.c $(TSD_SRCS) $(INCL)
|
|
268
|
-
version.res: version.rc $(INCL)
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
Contributors (in approximate order of appearance)
|
|
2
|
-
|
|
3
|
-
[See also the ChangeLog file where individuals are
|
|
4
|
-
attributed in log entries. Likewise in the FAQ file.]
|
|
5
|
-
|
|
6
|
-
Ben Elliston bje at cygnus dot com
|
|
7
|
-
Initiated the project;
|
|
8
|
-
setup the project infrastructure (CVS, web page, etc.);
|
|
9
|
-
early prototype routines.
|
|
10
|
-
Ross Johnson Ross dot Johnson at dot homemail dot com dot au
|
|
11
|
-
early prototype routines;
|
|
12
|
-
ongoing project coordination/maintenance;
|
|
13
|
-
implementation of spin locks and barriers;
|
|
14
|
-
various enhancements;
|
|
15
|
-
bug fixes;
|
|
16
|
-
documentation;
|
|
17
|
-
testsuite.
|
|
18
|
-
Robert Colquhoun rjc at trump dot net dot au
|
|
19
|
-
Early bug fixes.
|
|
20
|
-
John E. Bossom John dot Bossom at cognos dot com
|
|
21
|
-
Contributed substantial original working implementation;
|
|
22
|
-
bug fixes;
|
|
23
|
-
ongoing guidance and standards interpretation.
|
|
24
|
-
Anders Norlander anorland at hem2 dot passagen dot se
|
|
25
|
-
Early enhancements and runtime checking for supported
|
|
26
|
-
Win32 routines.
|
|
27
|
-
Tor Lillqvist tml at iki dot fi
|
|
28
|
-
General enhancements;
|
|
29
|
-
early bug fixes to condition variables.
|
|
30
|
-
Scott Lightner scott at curriculum dot com
|
|
31
|
-
Bug fix.
|
|
32
|
-
Kevin Ruland Kevin dot Ruland at anheuser-busch dot com
|
|
33
|
-
Various bug fixes.
|
|
34
|
-
Mike Russo miker at eai dot com
|
|
35
|
-
Bug fix.
|
|
36
|
-
Mark E. Armstrong avail at pacbell dot net
|
|
37
|
-
Bug fixes.
|
|
38
|
-
Lorin Hochstein lmh at xiphos dot ca
|
|
39
|
-
general bug fixes; bug fixes to condition variables.
|
|
40
|
-
Peter Slacik Peter dot Slacik at tatramed dot sk
|
|
41
|
-
Bug fixes.
|
|
42
|
-
Mumit Khan khan at xraylith dot wisc dot edu
|
|
43
|
-
Fixes to work with Mingw32.
|
|
44
|
-
Milan Gardian mg at tatramed dot sk
|
|
45
|
-
Bug fixes and reports/analyses of obscure problems.
|
|
46
|
-
Aurelio Medina aureliom at crt dot com
|
|
47
|
-
First implementation of read-write locks.
|
|
48
|
-
Graham Dumpleton Graham dot Dumpleton at ra dot pad dot otc dot telstra dot com dot au
|
|
49
|
-
Bug fix in condition variables.
|
|
50
|
-
Tristan Savatier tristan at mpegtv dot com
|
|
51
|
-
WinCE port.
|
|
52
|
-
Erik Hensema erik at hensema dot xs4all dot nl
|
|
53
|
-
Bug fixes.
|
|
54
|
-
Rich Peters rpeters at micro-magic dot com
|
|
55
|
-
Todd Owen towen at lucidcalm dot dropbear dot id dot au
|
|
56
|
-
Bug fixes to dll loading.
|
|
57
|
-
Jason Nye jnye at nbnet dot nb dot ca
|
|
58
|
-
Implementation of async cancelation.
|
|
59
|
-
Fred Forester fforest at eticomm dot net
|
|
60
|
-
Kevin D. Clark kclark at cabletron dot com
|
|
61
|
-
David Baggett dmb at itasoftware dot com
|
|
62
|
-
Bug fixes.
|
|
63
|
-
Paul Redondo paul at matchvision dot com
|
|
64
|
-
Scott McCaskill scott at 3dfx dot com
|
|
65
|
-
Bug fixes.
|
|
66
|
-
Jef Gearhart jgearhart at tpssys dot com
|
|
67
|
-
Bug fix.
|
|
68
|
-
Arthur Kantor akantor at bexusa dot com
|
|
69
|
-
Mutex enhancements.
|
|
70
|
-
Steven Reddie smr at essemer dot com dot au
|
|
71
|
-
Bug fix.
|
|
72
|
-
Alexander Terekhov TEREKHOV at de dot ibm dot com
|
|
73
|
-
Re-implemented and improved read-write locks;
|
|
74
|
-
(with Louis Thomas) re-implemented and improved
|
|
75
|
-
condition variables;
|
|
76
|
-
enhancements to semaphores;
|
|
77
|
-
enhancements to mutexes;
|
|
78
|
-
new mutex implementation in 'futex' style;
|
|
79
|
-
suggested a robust implementation of pthread_once
|
|
80
|
-
similar to that implemented by V.Kliathcko;
|
|
81
|
-
system clock change handling re CV timeouts;
|
|
82
|
-
bug fixes.
|
|
83
|
-
Thomas Pfaff tpfaff at gmx dot net
|
|
84
|
-
Changes to make C version usable with C++ applications;
|
|
85
|
-
re-implemented mutex routines to avoid Win32 mutexes
|
|
86
|
-
and TryEnterCriticalSection;
|
|
87
|
-
procedure to fix Mingw32 thread-safety issues.
|
|
88
|
-
Franco Bez franco dot bez at gmx dot de
|
|
89
|
-
procedure to fix Mingw32 thread-safety issues.
|
|
90
|
-
Louis Thomas lthomas at arbitrade dot com
|
|
91
|
-
(with Alexander Terekhov) re-implemented and improved
|
|
92
|
-
condition variables.
|
|
93
|
-
David Korn dgk at research dot att dot com
|
|
94
|
-
Ported to UWIN.
|
|
95
|
-
Phil Frisbie, Jr. phil at hawksoft dot com
|
|
96
|
-
Bug fix.
|
|
97
|
-
Ralf Brese Ralf dot Brese at pdb4 dot siemens dot de
|
|
98
|
-
Bug fix.
|
|
99
|
-
prionx at juno dot com prionx at juno dot com
|
|
100
|
-
Bug fixes.
|
|
101
|
-
Max Woodbury mtew at cds dot duke dot edu
|
|
102
|
-
POSIX versioning conditionals;
|
|
103
|
-
reduced namespace pollution;
|
|
104
|
-
idea to separate routines to reduce statically
|
|
105
|
-
linked image sizes.
|
|
106
|
-
Rob Fanner rfanner at stonethree dot com
|
|
107
|
-
Bug fix.
|
|
108
|
-
Michael Johnson michaelj at maine dot rr dot com
|
|
109
|
-
Bug fix.
|
|
110
|
-
Nicolas Barry boozai at yahoo dot com
|
|
111
|
-
Bug fixes.
|
|
112
|
-
Piet van Bruggen pietvb at newbridges dot nl
|
|
113
|
-
Bug fix.
|
|
114
|
-
Makoto Kato raven at oldskool dot jp
|
|
115
|
-
AMD64 port.
|
|
116
|
-
Panagiotis E. Hadjidoukas peh at hpclab dot ceid dot upatras dot gr
|
|
117
|
-
phadjido at cs dot uoi dot gr
|
|
118
|
-
Contributed the QueueUserAPCEx package which
|
|
119
|
-
makes preemptive async cancelation possible.
|
|
120
|
-
Will Bryant will dot bryant at ecosm dot com
|
|
121
|
-
Borland compiler patch and makefile.
|
|
122
|
-
Anuj Goyal anuj dot goyal at gmail dot com
|
|
123
|
-
Port to Digital Mars compiler.
|
|
124
|
-
Gottlob Frege gottlobfrege at gmail dot com
|
|
125
|
-
re-implemented pthread_once (version 2)
|
|
126
|
-
(pthread_once cancellation added by rpj).
|
|
127
|
-
Vladimir Kliatchko vladimir at kliatchko dot com
|
|
128
|
-
reimplemented pthread_once with the same form
|
|
129
|
-
as described by A.Terekhov (later version 2);
|
|
130
|
-
implementation of MCS (Mellor-Crummey/Scott) locks.
|
|
131
|
-
Ramiro Polla ramiro.polla at gmail dot com
|
|
132
|
-
static library auto init/cleanup on application
|
|
133
|
-
start/exit via RT hooks (MSC and GCC compilers only).
|
|
134
|
-
Daniel Richard G. skunk at iSKUNK dot org
|
|
135
|
-
Patches and cleanups for x86 and x64, particularly
|
|
136
|
-
across a range of MS build environments.
|
|
137
|
-
John Kamp john dot kamp at globalgraphics dot com
|
|
138
|
-
Patches to fix various problems on x64; brutal testing
|
|
139
|
-
particularly using high memory run environments.
|
|
140
|
-
|
|
@@ -1,150 +0,0 @@
|
|
|
1
|
-
pthreads-win32 - a POSIX threads library for Microsoft Windows
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
This file is Copyrighted
|
|
5
|
-
------------------------
|
|
6
|
-
|
|
7
|
-
This file is covered under the following Copyright:
|
|
8
|
-
|
|
9
|
-
Copyright (C) 2001,2006 Ross P. Johnson
|
|
10
|
-
All rights reserved.
|
|
11
|
-
|
|
12
|
-
Everyone is permitted to copy and distribute verbatim copies
|
|
13
|
-
of this license document, but changing it is not allowed.
|
|
14
|
-
|
|
15
|
-
Pthreads-win32 is covered by the GNU Lesser General Public License
|
|
16
|
-
------------------------------------------------------------------
|
|
17
|
-
|
|
18
|
-
Pthreads-win32 is open software; you can redistribute it and/or
|
|
19
|
-
modify it under the terms of the GNU Lesser General Public License
|
|
20
|
-
as published by the Free Software Foundation version 2.1 of the
|
|
21
|
-
License.
|
|
22
|
-
|
|
23
|
-
Pthreads-win32 is several binary link libraries, several modules,
|
|
24
|
-
associated interface definition files and scripts used to control
|
|
25
|
-
its compilation and installation.
|
|
26
|
-
|
|
27
|
-
Pthreads-win32 is distributed in the hope that it will be useful,
|
|
28
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
29
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
30
|
-
GNU Lesser General Public License for more details.
|
|
31
|
-
|
|
32
|
-
A copy of the GNU Lesser General Public License is distributed with
|
|
33
|
-
pthreads-win32 under the filename:
|
|
34
|
-
|
|
35
|
-
COPYING.LIB
|
|
36
|
-
|
|
37
|
-
You should have received a copy of the version 2.1 GNU Lesser General
|
|
38
|
-
Public License with pthreads-win32; if not, write to:
|
|
39
|
-
|
|
40
|
-
Free Software Foundation, Inc.
|
|
41
|
-
59 Temple Place
|
|
42
|
-
Suite 330
|
|
43
|
-
Boston, MA 02111-1307
|
|
44
|
-
USA
|
|
45
|
-
|
|
46
|
-
The contact addresses for pthreads-win32 is as follows:
|
|
47
|
-
|
|
48
|
-
Web: http://sources.redhat.com/pthreads-win32
|
|
49
|
-
Email: Ross Johnson
|
|
50
|
-
Please use: Firstname.Lastname@homemail.com.au
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
Pthreads-win32 copyrights and exception files
|
|
55
|
-
---------------------------------------------
|
|
56
|
-
|
|
57
|
-
With the exception of the files listed below, Pthreads-win32
|
|
58
|
-
is covered under the following GNU Lesser General Public License
|
|
59
|
-
Copyrights:
|
|
60
|
-
|
|
61
|
-
Pthreads-win32 - POSIX Threads Library for Win32
|
|
62
|
-
Copyright(C) 1998 John E. Bossom
|
|
63
|
-
Copyright(C) 1999,2006 Pthreads-win32 contributors
|
|
64
|
-
|
|
65
|
-
The current list of contributors is contained
|
|
66
|
-
in the file CONTRIBUTORS included with the source
|
|
67
|
-
code distribution. The current list of CONTRIBUTORS
|
|
68
|
-
can also be seen at the following WWW location:
|
|
69
|
-
http://sources.redhat.com/pthreads-win32/contributors.html
|
|
70
|
-
|
|
71
|
-
Contact Email: Ross Johnson
|
|
72
|
-
Please use: Firstname.Lastname@homemail.com.au
|
|
73
|
-
|
|
74
|
-
These files are not covered under one of the Copyrights listed above:
|
|
75
|
-
|
|
76
|
-
COPYING
|
|
77
|
-
COPYING.LIB
|
|
78
|
-
tests/rwlock7.c
|
|
79
|
-
|
|
80
|
-
This file, COPYING, is distributed under the Copyright found at the
|
|
81
|
-
top of this file. It is important to note that you may distribute
|
|
82
|
-
verbatim copies of this file but you may not modify this file.
|
|
83
|
-
|
|
84
|
-
The file COPYING.LIB, which contains a copy of the version 2.1
|
|
85
|
-
GNU Lesser General Public License, is itself copyrighted by the
|
|
86
|
-
Free Software Foundation, Inc. Please note that the Free Software
|
|
87
|
-
Foundation, Inc. does NOT have a copyright over Pthreads-win32,
|
|
88
|
-
only the COPYING.LIB that is supplied with pthreads-win32.
|
|
89
|
-
|
|
90
|
-
The file tests/rwlock7.c is derived from code written by
|
|
91
|
-
Dave Butenhof for his book 'Programming With POSIX(R) Threads'.
|
|
92
|
-
The original code was obtained by free download from his website
|
|
93
|
-
http://home.earthlink.net/~anneart/family/Threads/source.html
|
|
94
|
-
and did not contain a copyright or author notice. It is assumed to
|
|
95
|
-
be freely distributable.
|
|
96
|
-
|
|
97
|
-
In all cases one may use and distribute these exception files freely.
|
|
98
|
-
And because one may freely distribute the LGPL covered files, the
|
|
99
|
-
entire pthreads-win32 source may be freely used and distributed.
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
General Copyleft and License info
|
|
104
|
-
---------------------------------
|
|
105
|
-
|
|
106
|
-
For general information on Copylefts, see:
|
|
107
|
-
|
|
108
|
-
http://www.gnu.org/copyleft/
|
|
109
|
-
|
|
110
|
-
For information on GNU Lesser General Public Licenses, see:
|
|
111
|
-
|
|
112
|
-
http://www.gnu.org/copyleft/lesser.html
|
|
113
|
-
http://www.gnu.org/copyleft/lesser.txt
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
Why pthreads-win32 did not use the GNU General Public License
|
|
117
|
-
-------------------------------------------------------------
|
|
118
|
-
|
|
119
|
-
The goal of the pthreads-win32 project has been to
|
|
120
|
-
provide a quality and complete implementation of the POSIX
|
|
121
|
-
threads API for Microsoft Windows within the limits imposed
|
|
122
|
-
by virtue of it being a stand-alone library and not
|
|
123
|
-
linked directly to other POSIX compliant libraries. For
|
|
124
|
-
example, some functions and features, such as those based
|
|
125
|
-
on POSIX signals, are missing.
|
|
126
|
-
|
|
127
|
-
Pthreads-win32 is a library, available in several different
|
|
128
|
-
versions depending on supported compilers, and may be used
|
|
129
|
-
as a dynamically linked module or a statically linked set of
|
|
130
|
-
binary modules. It is not an application on it's own.
|
|
131
|
-
|
|
132
|
-
It was fully intended that pthreads-win32 be usable with
|
|
133
|
-
commercial software not covered by either the GPL or the LGPL
|
|
134
|
-
licenses. Pthreads-win32 has many contributors to it's
|
|
135
|
-
code base, many of whom have done so because they have
|
|
136
|
-
used the library in commercial or proprietry software
|
|
137
|
-
projects.
|
|
138
|
-
|
|
139
|
-
Releasing pthreads-win32 under the LGPL ensures that the
|
|
140
|
-
library can be used widely, while at the same time ensures
|
|
141
|
-
that bug fixes and improvements to the pthreads-win32 code
|
|
142
|
-
itself is returned to benefit all current and future users
|
|
143
|
-
of the library.
|
|
144
|
-
|
|
145
|
-
Although pthreads-win32 makes it possible for applications
|
|
146
|
-
that use POSIX threads to be ported to Win32 platforms, the
|
|
147
|
-
broader goal of the project is to encourage the use of open
|
|
148
|
-
standards, and in particular, to make it just a little easier
|
|
149
|
-
for developers writing Win32 applications to consider
|
|
150
|
-
widening the potential market for their products.
|