├── .gitattributes ├── .gitignore ├── .tito.spec.tmpl ├── .tito ├── custom.py └── tito.props ├── COPYING ├── INSTALL ├── Lindent ├── Makefile.am ├── README.markdown ├── README_CH.md ├── autogen.sh ├── check ├── coding_style.txt ├── configure.ac ├── docs ├── .gitignore ├── Makefile.am ├── mainpage.h ├── man.dox.in └── man8 │ └── qb-blackbox.8 ├── doxygen2man ├── Doxyfile.example ├── Makefile.am ├── cstring.c ├── cstring.h ├── doxygen2man.1 └── doxygen2man.c ├── examples ├── .gitignore ├── Makefile.am ├── ipcclient.c ├── ipcserver.c ├── mapnotify.c ├── simplelog.c ├── tcpclient.c └── tcpserver.c ├── include ├── .gitignore ├── Makefile.am ├── os_base.h ├── qb │ ├── Makefile.am │ ├── qbarray.h │ ├── qbatomic.h │ ├── qbconfig.h.in │ ├── qbdefs.h │ ├── qbhdb.h │ ├── qbipc_common.h │ ├── qbipcc.h │ ├── qbipcs.h │ ├── qblist.h │ ├── qblog.h │ ├── qbloop.h │ ├── qbmap.h │ ├── qbrb.h │ └── qbutil.h └── tlist.h ├── lib ├── .gitignore ├── Makefile.am ├── array.c ├── atomic_int.h ├── hashtable.c ├── hdb.c ├── ipc_int.h ├── ipc_setup.c ├── ipc_shm.c ├── ipc_socket.c ├── ipcc.c ├── ipcs.c ├── libqb.pc.in ├── log.c ├── log_blackbox.c ├── log_dcs.c ├── log_file.c ├── log_format.c ├── log_int.h ├── log_syslog.c ├── log_thread.c ├── loop.c ├── loop_int.h ├── loop_job.c ├── loop_poll.c ├── loop_poll_epoll.c ├── loop_poll_int.h ├── loop_poll_kqueue.c ├── loop_poll_poll.c ├── loop_timerlist.c ├── map.c ├── map_int.h ├── qblog_script.la.in ├── qblog_script.ld.in ├── qblog_script_noop.ld ├── ringbuffer.c ├── ringbuffer_helper.c ├── ringbuffer_int.h ├── rpl_sem.c ├── rpl_sem.h ├── skiplist.c ├── strchrnul.c ├── strlcat.c ├── strlcpy.c ├── trie.c ├── unix.c ├── util.c └── util_int.h ├── libqb.spec.in ├── m4 ├── ax_check_link_flag.m4 ├── ax_compat.m4 ├── ax_prog_date.m4 ├── ax_pthread.m4 ├── ax_restore_flags.m4 └── ax_save_flags.m4 ├── tests ├── .gitignore ├── Makefile.am ├── _failure_injection.c ├── _failure_injection.h ├── _libstat_wrapper.c ├── _syslog_override.c ├── _syslog_override.h ├── bench-log.c ├── blackbox-segfault.sh ├── bmc.c ├── bmcpt.c ├── bms.c ├── check_array.c ├── check_common.h ├── check_ipc.c ├── check_list.c ├── check_log.c ├── check_loop.c ├── check_map.c ├── check_rb.c ├── check_tlist.c ├── check_util.c ├── crash_test_dummy.c ├── file_change_bytes.c ├── format_compare_speed.c ├── loop.c ├── make-log-test.sh ├── print_ver.c ├── rbreader.c ├── rbwriter.c ├── resources.test ├── run-coverity ├── sock_ipc_wrapper.test ├── start.test └── test.conf.in └── tools ├── .gitignore ├── Makefile.am └── qb_blackbox.c /.gitattributes: -------------------------------------------------------------------------------- 1 | /configure.ac export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/.gitignore -------------------------------------------------------------------------------- /.tito.spec.tmpl: -------------------------------------------------------------------------------- 1 | Name: libqb 2 | -------------------------------------------------------------------------------- /.tito/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/.tito/custom.py -------------------------------------------------------------------------------- /.tito/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/.tito/tito.props -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/INSTALL -------------------------------------------------------------------------------- /Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/Lindent -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/README.markdown -------------------------------------------------------------------------------- /README_CH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/README_CH.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/autogen.sh -------------------------------------------------------------------------------- /check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/check -------------------------------------------------------------------------------- /coding_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/coding_style.txt -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | man3 2 | xml 3 | *.dox 4 | -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/docs/mainpage.h -------------------------------------------------------------------------------- /docs/man.dox.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/docs/man.dox.in -------------------------------------------------------------------------------- /docs/man8/qb-blackbox.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/docs/man8/qb-blackbox.8 -------------------------------------------------------------------------------- /doxygen2man/Doxyfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/doxygen2man/Doxyfile.example -------------------------------------------------------------------------------- /doxygen2man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/doxygen2man/Makefile.am -------------------------------------------------------------------------------- /doxygen2man/cstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/doxygen2man/cstring.c -------------------------------------------------------------------------------- /doxygen2man/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/doxygen2man/cstring.h -------------------------------------------------------------------------------- /doxygen2man/doxygen2man.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/doxygen2man/doxygen2man.1 -------------------------------------------------------------------------------- /doxygen2man/doxygen2man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/doxygen2man/doxygen2man.c -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/ipcclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/ipcclient.c -------------------------------------------------------------------------------- /examples/ipcserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/ipcserver.c -------------------------------------------------------------------------------- /examples/mapnotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/mapnotify.c -------------------------------------------------------------------------------- /examples/simplelog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/simplelog.c -------------------------------------------------------------------------------- /examples/tcpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/tcpclient.c -------------------------------------------------------------------------------- /examples/tcpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/examples/tcpserver.c -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/os_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/os_base.h -------------------------------------------------------------------------------- /include/qb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/Makefile.am -------------------------------------------------------------------------------- /include/qb/qbarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbarray.h -------------------------------------------------------------------------------- /include/qb/qbatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbatomic.h -------------------------------------------------------------------------------- /include/qb/qbconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbconfig.h.in -------------------------------------------------------------------------------- /include/qb/qbdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbdefs.h -------------------------------------------------------------------------------- /include/qb/qbhdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbhdb.h -------------------------------------------------------------------------------- /include/qb/qbipc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbipc_common.h -------------------------------------------------------------------------------- /include/qb/qbipcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbipcc.h -------------------------------------------------------------------------------- /include/qb/qbipcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbipcs.h -------------------------------------------------------------------------------- /include/qb/qblist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qblist.h -------------------------------------------------------------------------------- /include/qb/qblog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qblog.h -------------------------------------------------------------------------------- /include/qb/qbloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbloop.h -------------------------------------------------------------------------------- /include/qb/qbmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbmap.h -------------------------------------------------------------------------------- /include/qb/qbrb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbrb.h -------------------------------------------------------------------------------- /include/qb/qbutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/qb/qbutil.h -------------------------------------------------------------------------------- /include/tlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/include/tlist.h -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | run_splint.sh 2 | -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/array.c -------------------------------------------------------------------------------- /lib/atomic_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/atomic_int.h -------------------------------------------------------------------------------- /lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/hashtable.c -------------------------------------------------------------------------------- /lib/hdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/hdb.c -------------------------------------------------------------------------------- /lib/ipc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ipc_int.h -------------------------------------------------------------------------------- /lib/ipc_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ipc_setup.c -------------------------------------------------------------------------------- /lib/ipc_shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ipc_shm.c -------------------------------------------------------------------------------- /lib/ipc_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ipc_socket.c -------------------------------------------------------------------------------- /lib/ipcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ipcc.c -------------------------------------------------------------------------------- /lib/ipcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ipcs.c -------------------------------------------------------------------------------- /lib/libqb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/libqb.pc.in -------------------------------------------------------------------------------- /lib/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log.c -------------------------------------------------------------------------------- /lib/log_blackbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_blackbox.c -------------------------------------------------------------------------------- /lib/log_dcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_dcs.c -------------------------------------------------------------------------------- /lib/log_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_file.c -------------------------------------------------------------------------------- /lib/log_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_format.c -------------------------------------------------------------------------------- /lib/log_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_int.h -------------------------------------------------------------------------------- /lib/log_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_syslog.c -------------------------------------------------------------------------------- /lib/log_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/log_thread.c -------------------------------------------------------------------------------- /lib/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop.c -------------------------------------------------------------------------------- /lib/loop_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_int.h -------------------------------------------------------------------------------- /lib/loop_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_job.c -------------------------------------------------------------------------------- /lib/loop_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_poll.c -------------------------------------------------------------------------------- /lib/loop_poll_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_poll_epoll.c -------------------------------------------------------------------------------- /lib/loop_poll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_poll_int.h -------------------------------------------------------------------------------- /lib/loop_poll_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_poll_kqueue.c -------------------------------------------------------------------------------- /lib/loop_poll_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_poll_poll.c -------------------------------------------------------------------------------- /lib/loop_timerlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/loop_timerlist.c -------------------------------------------------------------------------------- /lib/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/map.c -------------------------------------------------------------------------------- /lib/map_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/map_int.h -------------------------------------------------------------------------------- /lib/qblog_script.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/qblog_script.la.in -------------------------------------------------------------------------------- /lib/qblog_script.ld.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/qblog_script.ld.in -------------------------------------------------------------------------------- /lib/qblog_script_noop.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/qblog_script_noop.ld -------------------------------------------------------------------------------- /lib/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ringbuffer.c -------------------------------------------------------------------------------- /lib/ringbuffer_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ringbuffer_helper.c -------------------------------------------------------------------------------- /lib/ringbuffer_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/ringbuffer_int.h -------------------------------------------------------------------------------- /lib/rpl_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/rpl_sem.c -------------------------------------------------------------------------------- /lib/rpl_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/rpl_sem.h -------------------------------------------------------------------------------- /lib/skiplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/skiplist.c -------------------------------------------------------------------------------- /lib/strchrnul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/strchrnul.c -------------------------------------------------------------------------------- /lib/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/strlcat.c -------------------------------------------------------------------------------- /lib/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/strlcpy.c -------------------------------------------------------------------------------- /lib/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/trie.c -------------------------------------------------------------------------------- /lib/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/unix.c -------------------------------------------------------------------------------- /lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/util.c -------------------------------------------------------------------------------- /lib/util_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/lib/util_int.h -------------------------------------------------------------------------------- /libqb.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/libqb.spec.in -------------------------------------------------------------------------------- /m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /m4/ax_compat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/m4/ax_compat.m4 -------------------------------------------------------------------------------- /m4/ax_prog_date.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/m4/ax_prog_date.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_restore_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/m4/ax_restore_flags.m4 -------------------------------------------------------------------------------- /m4/ax_save_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/m4/ax_save_flags.m4 -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/_failure_injection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/_failure_injection.c -------------------------------------------------------------------------------- /tests/_failure_injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/_failure_injection.h -------------------------------------------------------------------------------- /tests/_libstat_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/_libstat_wrapper.c -------------------------------------------------------------------------------- /tests/_syslog_override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/_syslog_override.c -------------------------------------------------------------------------------- /tests/_syslog_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/_syslog_override.h -------------------------------------------------------------------------------- /tests/bench-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/bench-log.c -------------------------------------------------------------------------------- /tests/blackbox-segfault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/blackbox-segfault.sh -------------------------------------------------------------------------------- /tests/bmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/bmc.c -------------------------------------------------------------------------------- /tests/bmcpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/bmcpt.c -------------------------------------------------------------------------------- /tests/bms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/bms.c -------------------------------------------------------------------------------- /tests/check_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_array.c -------------------------------------------------------------------------------- /tests/check_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_common.h -------------------------------------------------------------------------------- /tests/check_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_ipc.c -------------------------------------------------------------------------------- /tests/check_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_list.c -------------------------------------------------------------------------------- /tests/check_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_log.c -------------------------------------------------------------------------------- /tests/check_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_loop.c -------------------------------------------------------------------------------- /tests/check_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_map.c -------------------------------------------------------------------------------- /tests/check_rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_rb.c -------------------------------------------------------------------------------- /tests/check_tlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_tlist.c -------------------------------------------------------------------------------- /tests/check_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/check_util.c -------------------------------------------------------------------------------- /tests/crash_test_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/crash_test_dummy.c -------------------------------------------------------------------------------- /tests/file_change_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/file_change_bytes.c -------------------------------------------------------------------------------- /tests/format_compare_speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/format_compare_speed.c -------------------------------------------------------------------------------- /tests/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/loop.c -------------------------------------------------------------------------------- /tests/make-log-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/make-log-test.sh -------------------------------------------------------------------------------- /tests/print_ver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/print_ver.c -------------------------------------------------------------------------------- /tests/rbreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/rbreader.c -------------------------------------------------------------------------------- /tests/rbwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/rbwriter.c -------------------------------------------------------------------------------- /tests/resources.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/resources.test -------------------------------------------------------------------------------- /tests/run-coverity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/run-coverity -------------------------------------------------------------------------------- /tests/sock_ipc_wrapper.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/sock_ipc_wrapper.test -------------------------------------------------------------------------------- /tests/start.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/start.test -------------------------------------------------------------------------------- /tests/test.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tests/test.conf.in -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | qb-blackbox 2 | -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/qb_blackbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/libqb/HEAD/tools/qb_blackbox.c --------------------------------------------------------------------------------