├── .clang-format ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile.am ├── Makefile.w32 ├── NOTICE ├── README-WINDOWS.md ├── README.md ├── ag.bashcomp.sh ├── configure.ac ├── doc ├── ag.1 ├── ag.1.md └── generate_man.sh ├── format.sh ├── m4 └── ax_pthread.m4 ├── premake4.lua ├── premake5.lua ├── scripts ├── runtests.bat ├── runtests.py ├── util.py └── vc.bat ├── src ├── decompress.c ├── decompress.h ├── encoding.c ├── encoding.h ├── ignore.c ├── ignore.h ├── lang.c ├── lang.h ├── log.c ├── log.h ├── main.c ├── options.c ├── options.h ├── print.c ├── print.h ├── print_w32.c ├── scandir.c ├── scandir.h ├── search.c ├── search.h ├── uthash.h ├── util.c ├── util.h └── win32 │ └── config.h ├── tests ├── adjacent_matches.t ├── bad_path.t ├── big │ ├── big_file.t │ └── create_big_file.py ├── case_sensitivity.t ├── color.t ├── count.t ├── ds_store_ignore.t ├── empty_match.t ├── exitcodes.t ├── hidden_option.t ├── ignore_abs_path.t ├── ignore_absolute_search_path_with_glob.t ├── ignore_backups.t ├── ignore_examine_parent_ignorefiles.t ├── ignore_gitignore.t ├── ignore_pattern_in_subdirectory.t ├── ignore_subdir.t ├── invert_match.t ├── is_binary.pdf ├── is_binary_pdf.t ├── list_file_types.t ├── max_count.t ├── one_device.t ├── only_matching.t ├── option_g.t ├── option_smartcase.t ├── passthrough.t ├── search_stdin.t ├── setup.sh ├── stupid_fnmatch.t.disabled └── vimgrep.t ├── testskjk └── test00.txt ├── the_silver_searcher.spec.in ├── todo-windows.txt ├── vs2013 ├── ag.sln ├── ag.vcxproj ├── ag.vcxproj.filters ├── pcre.vcxproj ├── pcre.vcxproj.filters ├── pthread-win32.vcxproj ├── pthread-win32.vcxproj.filters ├── zlib.vcxproj └── zlib.vcxproj.filters └── wincompat ├── config.h ├── dirent.c ├── dirent.h ├── getopt.c ├── getopt.h ├── kjk_crash_handler.cpp ├── pch.c ├── pch.h ├── pcre ├── config.h ├── pcre.h ├── pcre_byte_order.c ├── pcre_chartables.c ├── pcre_compile.c ├── pcre_config.c ├── pcre_dfa_exec.c ├── pcre_exec.c ├── pcre_fullinfo.c ├── pcre_get.c ├── pcre_globals.c ├── pcre_internal.h ├── pcre_jit_compile.c ├── pcre_maketables.c ├── pcre_newline.c ├── pcre_ord2utf8.c ├── pcre_refcount.c ├── pcre_string_utils.c ├── pcre_study.c ├── pcre_tables.c ├── pcre_ucd.c ├── pcre_valid_utf8.c ├── pcre_version.c ├── pcre_xclass.c ├── sljit │ ├── sljitConfig.h │ ├── sljitConfigInternal.h │ ├── sljitExecAllocator.c │ ├── sljitLir.c │ ├── sljitLir.h │ ├── sljitNativeARM_Thumb2.c │ ├── sljitNativeARM_v5.c │ ├── sljitNativeMIPS_32.c │ ├── sljitNativeMIPS_common.c │ ├── sljitNativePPC_32.c │ ├── sljitNativePPC_64.c │ ├── sljitNativePPC_common.c │ ├── sljitNativeSPARC_32.c │ ├── sljitNativeSPARC_common.c │ ├── sljitNativeX86_32.c │ ├── sljitNativeX86_64.c │ ├── sljitNativeX86_common.c │ └── sljitUtils.c └── ucp.h ├── pthread ├── attr.c ├── autostatic.c ├── barrier.c ├── cancel.c ├── cleanup.c ├── condvar.c ├── context.h ├── create.c ├── errno.c ├── exit.c ├── fork.c ├── global.c ├── implement.h ├── misc.c ├── mutex.c ├── nonportable.c ├── private.c ├── pthread.c ├── pthread.h ├── pthread_attr_destroy.c ├── pthread_attr_getdetachstate.c ├── pthread_attr_getinheritsched.c ├── pthread_attr_getschedparam.c ├── pthread_attr_getschedpolicy.c ├── pthread_attr_getscope.c ├── pthread_attr_getstackaddr.c ├── pthread_attr_getstacksize.c ├── pthread_attr_init.c ├── pthread_attr_setdetachstate.c ├── pthread_attr_setinheritsched.c ├── pthread_attr_setschedparam.c ├── pthread_attr_setschedpolicy.c ├── pthread_attr_setscope.c ├── pthread_attr_setstackaddr.c ├── pthread_attr_setstacksize.c ├── pthread_barrier_destroy.c ├── pthread_barrier_init.c ├── pthread_barrier_wait.c ├── pthread_barrierattr_destroy.c ├── pthread_barrierattr_getpshared.c ├── pthread_barrierattr_init.c ├── pthread_barrierattr_setpshared.c ├── pthread_cancel.c ├── pthread_cond_destroy.c ├── pthread_cond_init.c ├── pthread_cond_signal.c ├── pthread_cond_wait.c ├── pthread_condattr_destroy.c ├── pthread_condattr_getpshared.c ├── pthread_condattr_init.c ├── pthread_condattr_setpshared.c ├── pthread_delay_np.c ├── pthread_detach.c ├── pthread_equal.c ├── pthread_exit.c ├── pthread_getconcurrency.c ├── pthread_getschedparam.c ├── pthread_getspecific.c ├── pthread_getunique_np.c ├── pthread_getw32threadhandle_np.c ├── pthread_join.c ├── pthread_key_create.c ├── pthread_key_delete.c ├── pthread_kill.c ├── pthread_mutex_consistent.c ├── pthread_mutex_destroy.c ├── pthread_mutex_init.c ├── pthread_mutex_lock.c ├── pthread_mutex_timedlock.c ├── pthread_mutex_trylock.c ├── pthread_mutex_unlock.c ├── pthread_mutexattr_destroy.c ├── pthread_mutexattr_getkind_np.c ├── pthread_mutexattr_getpshared.c ├── pthread_mutexattr_getrobust.c ├── pthread_mutexattr_gettype.c ├── pthread_mutexattr_init.c ├── pthread_mutexattr_setkind_np.c ├── pthread_mutexattr_setpshared.c ├── pthread_mutexattr_setrobust.c ├── pthread_mutexattr_settype.c ├── pthread_num_processors_np.c ├── pthread_once.c ├── pthread_rwlock_destroy.c ├── pthread_rwlock_init.c ├── pthread_rwlock_rdlock.c ├── pthread_rwlock_timedrdlock.c ├── pthread_rwlock_timedwrlock.c ├── pthread_rwlock_tryrdlock.c ├── pthread_rwlock_trywrlock.c ├── pthread_rwlock_unlock.c ├── pthread_rwlock_wrlock.c ├── pthread_rwlockattr_destroy.c ├── pthread_rwlockattr_getpshared.c ├── pthread_rwlockattr_init.c ├── pthread_rwlockattr_setpshared.c ├── pthread_self.c ├── pthread_setcancelstate.c ├── pthread_setcanceltype.c ├── pthread_setconcurrency.c ├── pthread_setschedparam.c ├── pthread_setspecific.c ├── pthread_spin_destroy.c ├── pthread_spin_init.c ├── pthread_spin_lock.c ├── pthread_spin_trylock.c ├── pthread_spin_unlock.c ├── pthread_testcancel.c ├── pthread_timechange_handler_np.c ├── pthread_timedjoin_np.c ├── pthread_win32_attach_detach_np.c ├── ptw32_calloc.c ├── ptw32_calluserdestroyroutines.c ├── ptw32_cond_check_need_init.c ├── ptw32_getprocessors.c ├── ptw32_is_attr.c ├── ptw32_mcs_lock.c ├── ptw32_mutex_check_need_init.c ├── ptw32_new.c ├── ptw32_processinitialize.c ├── ptw32_processterminate.c ├── ptw32_relmillisecs.c ├── ptw32_reuse.c ├── ptw32_rwlock_cancelwrwait.c ├── ptw32_rwlock_check_need_init.c ├── ptw32_semwait.c ├── ptw32_spinlock_check_need_init.c ├── ptw32_threaddestroy.c ├── ptw32_threadstart.c ├── ptw32_throw.c ├── ptw32_timespec.c ├── ptw32_tkassoccreate.c ├── ptw32_tkassocdestroy.c ├── rwlock.c ├── sched.c ├── sched.h ├── sched_get_priority_max.c ├── sched_get_priority_min.c ├── sched_getscheduler.c ├── sched_setscheduler.c ├── sched_yield.c ├── sem_close.c ├── sem_destroy.c ├── sem_getvalue.c ├── sem_init.c ├── sem_open.c ├── sem_post.c ├── sem_post_multiple.c ├── sem_timedwait.c ├── sem_trywait.c ├── sem_unlink.c ├── sem_wait.c ├── semaphore.c ├── semaphore.h ├── signal.c ├── spin.c ├── sync.c ├── tsd.c └── w32_cancelablewait.c ├── sys └── time.h ├── unistd.c ├── unistd.h ├── unixcompat.h └── zlib ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/Makefile.w32 -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/NOTICE -------------------------------------------------------------------------------- /README-WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/README-WINDOWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/README.md -------------------------------------------------------------------------------- /ag.bashcomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/ag.bashcomp.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/ag.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/doc/ag.1 -------------------------------------------------------------------------------- /doc/ag.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/doc/ag.1.md -------------------------------------------------------------------------------- /doc/generate_man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/doc/generate_man.sh -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/format.sh -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/premake4.lua -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/premake5.lua -------------------------------------------------------------------------------- /scripts/runtests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/scripts/runtests.bat -------------------------------------------------------------------------------- /scripts/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/scripts/runtests.py -------------------------------------------------------------------------------- /scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/scripts/util.py -------------------------------------------------------------------------------- /scripts/vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/scripts/vc.bat -------------------------------------------------------------------------------- /src/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/decompress.c -------------------------------------------------------------------------------- /src/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/decompress.h -------------------------------------------------------------------------------- /src/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/encoding.c -------------------------------------------------------------------------------- /src/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/encoding.h -------------------------------------------------------------------------------- /src/ignore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/ignore.c -------------------------------------------------------------------------------- /src/ignore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/ignore.h -------------------------------------------------------------------------------- /src/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/lang.c -------------------------------------------------------------------------------- /src/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/lang.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/main.c -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/options.c -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/options.h -------------------------------------------------------------------------------- /src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/print.c -------------------------------------------------------------------------------- /src/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/print.h -------------------------------------------------------------------------------- /src/print_w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/print_w32.c -------------------------------------------------------------------------------- /src/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/scandir.c -------------------------------------------------------------------------------- /src/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/scandir.h -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/search.c -------------------------------------------------------------------------------- /src/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/search.h -------------------------------------------------------------------------------- /src/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/uthash.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/util.h -------------------------------------------------------------------------------- /src/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/src/win32/config.h -------------------------------------------------------------------------------- /tests/adjacent_matches.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/adjacent_matches.t -------------------------------------------------------------------------------- /tests/bad_path.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/bad_path.t -------------------------------------------------------------------------------- /tests/big/big_file.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/big/big_file.t -------------------------------------------------------------------------------- /tests/big/create_big_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/big/create_big_file.py -------------------------------------------------------------------------------- /tests/case_sensitivity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/case_sensitivity.t -------------------------------------------------------------------------------- /tests/color.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/color.t -------------------------------------------------------------------------------- /tests/count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/count.t -------------------------------------------------------------------------------- /tests/ds_store_ignore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ds_store_ignore.t -------------------------------------------------------------------------------- /tests/empty_match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/empty_match.t -------------------------------------------------------------------------------- /tests/exitcodes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/exitcodes.t -------------------------------------------------------------------------------- /tests/hidden_option.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/hidden_option.t -------------------------------------------------------------------------------- /tests/ignore_abs_path.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_abs_path.t -------------------------------------------------------------------------------- /tests/ignore_absolute_search_path_with_glob.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_absolute_search_path_with_glob.t -------------------------------------------------------------------------------- /tests/ignore_backups.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_backups.t -------------------------------------------------------------------------------- /tests/ignore_examine_parent_ignorefiles.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_examine_parent_ignorefiles.t -------------------------------------------------------------------------------- /tests/ignore_gitignore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_gitignore.t -------------------------------------------------------------------------------- /tests/ignore_pattern_in_subdirectory.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_pattern_in_subdirectory.t -------------------------------------------------------------------------------- /tests/ignore_subdir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/ignore_subdir.t -------------------------------------------------------------------------------- /tests/invert_match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/invert_match.t -------------------------------------------------------------------------------- /tests/is_binary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/is_binary.pdf -------------------------------------------------------------------------------- /tests/is_binary_pdf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/is_binary_pdf.t -------------------------------------------------------------------------------- /tests/list_file_types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/list_file_types.t -------------------------------------------------------------------------------- /tests/max_count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/max_count.t -------------------------------------------------------------------------------- /tests/one_device.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/one_device.t -------------------------------------------------------------------------------- /tests/only_matching.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/only_matching.t -------------------------------------------------------------------------------- /tests/option_g.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/option_g.t -------------------------------------------------------------------------------- /tests/option_smartcase.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/option_smartcase.t -------------------------------------------------------------------------------- /tests/passthrough.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/passthrough.t -------------------------------------------------------------------------------- /tests/search_stdin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/search_stdin.t -------------------------------------------------------------------------------- /tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/setup.sh -------------------------------------------------------------------------------- /tests/stupid_fnmatch.t.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/stupid_fnmatch.t.disabled -------------------------------------------------------------------------------- /tests/vimgrep.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/tests/vimgrep.t -------------------------------------------------------------------------------- /testskjk/test00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/testskjk/test00.txt -------------------------------------------------------------------------------- /the_silver_searcher.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/the_silver_searcher.spec.in -------------------------------------------------------------------------------- /todo-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/todo-windows.txt -------------------------------------------------------------------------------- /vs2013/ag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/ag.sln -------------------------------------------------------------------------------- /vs2013/ag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/ag.vcxproj -------------------------------------------------------------------------------- /vs2013/ag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/ag.vcxproj.filters -------------------------------------------------------------------------------- /vs2013/pcre.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/pcre.vcxproj -------------------------------------------------------------------------------- /vs2013/pcre.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/pcre.vcxproj.filters -------------------------------------------------------------------------------- /vs2013/pthread-win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/pthread-win32.vcxproj -------------------------------------------------------------------------------- /vs2013/pthread-win32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/pthread-win32.vcxproj.filters -------------------------------------------------------------------------------- /vs2013/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/zlib.vcxproj -------------------------------------------------------------------------------- /vs2013/zlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/vs2013/zlib.vcxproj.filters -------------------------------------------------------------------------------- /wincompat/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/config.h -------------------------------------------------------------------------------- /wincompat/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/dirent.c -------------------------------------------------------------------------------- /wincompat/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/dirent.h -------------------------------------------------------------------------------- /wincompat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/getopt.c -------------------------------------------------------------------------------- /wincompat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/getopt.h -------------------------------------------------------------------------------- /wincompat/kjk_crash_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/kjk_crash_handler.cpp -------------------------------------------------------------------------------- /wincompat/pch.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /wincompat/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pch.h -------------------------------------------------------------------------------- /wincompat/pcre/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/config.h -------------------------------------------------------------------------------- /wincompat/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre.h -------------------------------------------------------------------------------- /wincompat/pcre/pcre_byte_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_byte_order.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_chartables.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_compile.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_config.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_dfa_exec.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_exec.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_fullinfo.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_get.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_globals.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_internal.h -------------------------------------------------------------------------------- /wincompat/pcre/pcre_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_jit_compile.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_maketables.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_newline.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_ord2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_ord2utf8.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_refcount.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_string_utils.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_study.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_tables.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_ucd.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_valid_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_valid_utf8.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_version.c -------------------------------------------------------------------------------- /wincompat/pcre/pcre_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/pcre_xclass.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitConfig.h -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitConfigInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitConfigInternal.h -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitExecAllocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitExecAllocator.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitLir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitLir.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitLir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitLir.h -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeARM_Thumb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeARM_Thumb2.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeARM_v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeARM_v5.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeMIPS_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeMIPS_32.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeMIPS_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeMIPS_common.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativePPC_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativePPC_32.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativePPC_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativePPC_64.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativePPC_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativePPC_common.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeSPARC_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeSPARC_32.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeSPARC_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeSPARC_common.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeX86_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeX86_32.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeX86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeX86_64.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitNativeX86_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitNativeX86_common.c -------------------------------------------------------------------------------- /wincompat/pcre/sljit/sljitUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/sljit/sljitUtils.c -------------------------------------------------------------------------------- /wincompat/pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pcre/ucp.h -------------------------------------------------------------------------------- /wincompat/pthread/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/attr.c -------------------------------------------------------------------------------- /wincompat/pthread/autostatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/autostatic.c -------------------------------------------------------------------------------- /wincompat/pthread/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/barrier.c -------------------------------------------------------------------------------- /wincompat/pthread/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/cancel.c -------------------------------------------------------------------------------- /wincompat/pthread/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/cleanup.c -------------------------------------------------------------------------------- /wincompat/pthread/condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/condvar.c -------------------------------------------------------------------------------- /wincompat/pthread/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/context.h -------------------------------------------------------------------------------- /wincompat/pthread/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/create.c -------------------------------------------------------------------------------- /wincompat/pthread/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/errno.c -------------------------------------------------------------------------------- /wincompat/pthread/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/exit.c -------------------------------------------------------------------------------- /wincompat/pthread/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/fork.c -------------------------------------------------------------------------------- /wincompat/pthread/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/global.c -------------------------------------------------------------------------------- /wincompat/pthread/implement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/implement.h -------------------------------------------------------------------------------- /wincompat/pthread/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/misc.c -------------------------------------------------------------------------------- /wincompat/pthread/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/mutex.c -------------------------------------------------------------------------------- /wincompat/pthread/nonportable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/nonportable.c -------------------------------------------------------------------------------- /wincompat/pthread/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/private.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread.h -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getdetachstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getdetachstate.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getinheritsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getinheritsched.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getschedparam.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getschedpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getschedpolicy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getscope.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getstackaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getstackaddr.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_getstacksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_getstacksize.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setdetachstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setdetachstate.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setinheritsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setinheritsched.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setschedparam.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setschedpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setschedpolicy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setscope.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setstackaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setstackaddr.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_attr_setstacksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_attr_setstacksize.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrier_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrier_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrier_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrier_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrier_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrier_wait.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrierattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrierattr_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrierattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrierattr_getpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrierattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrierattr_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_barrierattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_barrierattr_setpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_cancel.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_cond_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_cond_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_cond_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_cond_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_cond_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_cond_signal.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_cond_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_cond_wait.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_condattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_condattr_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_condattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_condattr_getpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_condattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_condattr_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_condattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_condattr_setpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_delay_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_delay_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_detach.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_equal.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_exit.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_getconcurrency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_getconcurrency.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_getschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_getschedparam.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_getspecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_getspecific.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_getunique_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_getunique_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_getw32threadhandle_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_getw32threadhandle_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_join.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_key_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_key_create.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_key_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_key_delete.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_kill.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_consistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_consistent.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_lock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_timedlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_timedlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_trylock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutex_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutex_unlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_getkind_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_getkind_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_getpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_getrobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_getrobust.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_gettype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_gettype.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_setkind_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_setkind_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_setpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_setrobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_setrobust.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_mutexattr_settype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_mutexattr_settype.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_num_processors_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_num_processors_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_once.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_rdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_rdlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_timedrdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_timedrdlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_timedwrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_timedwrlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_tryrdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_tryrdlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_trywrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_trywrlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_unlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlock_wrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlock_wrlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlockattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlockattr_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlockattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlockattr_getpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlockattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlockattr_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_rwlockattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_rwlockattr_setpshared.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_self.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_setcancelstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_setcancelstate.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_setcanceltype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_setcanceltype.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_setconcurrency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_setconcurrency.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_setschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_setschedparam.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_setspecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_setspecific.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_spin_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_spin_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_spin_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_spin_init.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_spin_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_spin_lock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_spin_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_spin_trylock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_spin_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_spin_unlock.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_testcancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_testcancel.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_timechange_handler_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_timechange_handler_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_timedjoin_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_timedjoin_np.c -------------------------------------------------------------------------------- /wincompat/pthread/pthread_win32_attach_detach_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/pthread_win32_attach_detach_np.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_calloc.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_calluserdestroyroutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_calluserdestroyroutines.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_cond_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_cond_check_need_init.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_getprocessors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_getprocessors.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_is_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_is_attr.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_mcs_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_mcs_lock.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_mutex_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_mutex_check_need_init.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_new.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_processinitialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_processinitialize.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_processterminate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_processterminate.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_relmillisecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_relmillisecs.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_reuse.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_rwlock_cancelwrwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_rwlock_cancelwrwait.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_rwlock_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_rwlock_check_need_init.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_semwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_semwait.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_spinlock_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_spinlock_check_need_init.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_threaddestroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_threaddestroy.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_threadstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_threadstart.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_throw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_throw.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_timespec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_timespec.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_tkassoccreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_tkassoccreate.c -------------------------------------------------------------------------------- /wincompat/pthread/ptw32_tkassocdestroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/ptw32_tkassocdestroy.c -------------------------------------------------------------------------------- /wincompat/pthread/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/rwlock.c -------------------------------------------------------------------------------- /wincompat/pthread/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched.c -------------------------------------------------------------------------------- /wincompat/pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched.h -------------------------------------------------------------------------------- /wincompat/pthread/sched_get_priority_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched_get_priority_max.c -------------------------------------------------------------------------------- /wincompat/pthread/sched_get_priority_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched_get_priority_min.c -------------------------------------------------------------------------------- /wincompat/pthread/sched_getscheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched_getscheduler.c -------------------------------------------------------------------------------- /wincompat/pthread/sched_setscheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched_setscheduler.c -------------------------------------------------------------------------------- /wincompat/pthread/sched_yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sched_yield.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_close.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_destroy.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_getvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_getvalue.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_init.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_open.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_post.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_post_multiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_post_multiple.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_timedwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_timedwait.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_trywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_trywait.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_unlink.c -------------------------------------------------------------------------------- /wincompat/pthread/sem_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sem_wait.c -------------------------------------------------------------------------------- /wincompat/pthread/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/semaphore.c -------------------------------------------------------------------------------- /wincompat/pthread/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/semaphore.h -------------------------------------------------------------------------------- /wincompat/pthread/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/signal.c -------------------------------------------------------------------------------- /wincompat/pthread/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/spin.c -------------------------------------------------------------------------------- /wincompat/pthread/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/sync.c -------------------------------------------------------------------------------- /wincompat/pthread/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/tsd.c -------------------------------------------------------------------------------- /wincompat/pthread/w32_cancelablewait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/pthread/w32_cancelablewait.c -------------------------------------------------------------------------------- /wincompat/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/sys/time.h -------------------------------------------------------------------------------- /wincompat/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/unistd.c -------------------------------------------------------------------------------- /wincompat/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/unistd.h -------------------------------------------------------------------------------- /wincompat/unixcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/unixcompat.h -------------------------------------------------------------------------------- /wincompat/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/adler32.c -------------------------------------------------------------------------------- /wincompat/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/compress.c -------------------------------------------------------------------------------- /wincompat/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/crc32.c -------------------------------------------------------------------------------- /wincompat/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/crc32.h -------------------------------------------------------------------------------- /wincompat/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/deflate.c -------------------------------------------------------------------------------- /wincompat/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/deflate.h -------------------------------------------------------------------------------- /wincompat/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/infback.c -------------------------------------------------------------------------------- /wincompat/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inffast.c -------------------------------------------------------------------------------- /wincompat/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inffast.h -------------------------------------------------------------------------------- /wincompat/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inffixed.h -------------------------------------------------------------------------------- /wincompat/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inflate.c -------------------------------------------------------------------------------- /wincompat/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inflate.h -------------------------------------------------------------------------------- /wincompat/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inftrees.c -------------------------------------------------------------------------------- /wincompat/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/inftrees.h -------------------------------------------------------------------------------- /wincompat/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/trees.c -------------------------------------------------------------------------------- /wincompat/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/trees.h -------------------------------------------------------------------------------- /wincompat/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/uncompr.c -------------------------------------------------------------------------------- /wincompat/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/zconf.h -------------------------------------------------------------------------------- /wincompat/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/zlib.h -------------------------------------------------------------------------------- /wincompat/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/zutil.c -------------------------------------------------------------------------------- /wincompat/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjk/the_silver_searcher/HEAD/wincompat/zlib/zutil.h --------------------------------------------------------------------------------