diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-13 13:12:40 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-16 11:42:26 -0400 |
commit | 375caac5019aa174cf33b537335a085f43a2407d (patch) | |
tree | 61afaa4b902750efaffb36567f04ea76c4d18768 /build | |
parent | c964524f18fc5c3b7baf5a3d0eac0980f17d3cf0 (diff) | |
download | bfs-375caac5019aa174cf33b537335a085f43a2407d.tar.xz |
sighook: New utilities for hooking signals
This allows multiple hooks to be installed for a single signal.
Diffstat (limited to 'build')
-rw-r--r-- | build/prelude.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/prelude.mk b/build/prelude.mk index 5be26cb..d0968ea 100644 --- a/build/prelude.mk +++ b/build/prelude.mk @@ -92,6 +92,7 @@ LIBBFS := \ obj/src/parse.o \ obj/src/printf.o \ obj/src/pwcache.o \ + obj/src/sighook.o \ obj/src/stat.o \ obj/src/thread.o \ obj/src/trie.o \ @@ -108,6 +109,7 @@ UNIT_OBJS := \ obj/tests/bit.o \ obj/tests/ioq.o \ obj/tests/main.o \ + obj/tests/sighook.o \ obj/tests/trie.o \ obj/tests/xspawn.o \ obj/tests/xtime.o |