[PATCH 0/1] Fix build failure on Ubuntu
by Richard Ipsum
Hi,
Apparently the linker on Ubuntu is fussy about the order of flags,
I've tested this fix on Ubuntu 18.04 and 19.04.
Makes me wonder if it's worth having CI to catch this kind of stuff?
Thanks,
Richard
Richard Ipsum (1):
Fix linker error on Ubuntu
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
2.11.0
3 years, 11 months
[PATCH v3 0/4] Additional error numbers and signal functions
by Richard Ipsum
Evening,
I've made all new error numbers conditional and rebased on top of the new
master.
Cheers,
Richard
Richard Ipsum (4):
Define additional POSIX error numbers
simple: Add fdopen
Add sigpending, sigsuspend, sigwait, sigwaitinfo, sigtimedwait and
raise
Add license statements
Makefile | 1 +
findlua.mk | 1 +
luxio.c | 282 ++++++++++++++++++++++++++++++++++------
luxio/simple.lua | 18 +++
luxio_constants.inc.in | 52 +++++++-
tests/test-access.lua | 1 +
tests/test-creat.lua | 1 +
tests/test-dirent.lua | 1 +
tests/test-event-serv.lua | 1 +
tests/test-fcntl-lock-1.lua | 1 +
tests/test-fcntl-lock-2.lua | 1 +
tests/test-forkexecpwaitpid.lua | 1 +
tests/test-forkexecwaitpid.lua | 1 +
tests/test-http-client.lua | 1 +
tests/test-iconv.lua | 1 +
tests/test-mqueue-read.lua | 1 +
tests/test-mqueue-write.lua | 1 +
tests/test-poll-serv.lua | 1 +
tests/test-select.lua | 1 +
tests/test-setsid.lua | 1 +
tests/test-sigaction.lua | 1 +
tests/test-sigpending.lua | 18 +++
tests/test-sigprocmask.lua | 1 +
tests/test-sigsuspend.lua | 16 +++
tests/test-sigtimedwait.lua | 38 ++++++
tests/test-sigwait.lua | 22 ++++
tests/test-sigwaitinfo.lua | 22 ++++
tests/test-sio-http-client.lua | 1 +
tests/test-splice.lua | 1 +
tests/test-subprocess.lua | 1 +
tests/test-sysconf.lua | 1 +
tests/test-syslog.lua | 1 +
tests/test-termident.lua | 1 +
tests/test-uds-server.lua | 1 +
34 files changed, 452 insertions(+), 42 deletions(-)
create mode 100644 tests/test-sigpending.lua
create mode 100644 tests/test-sigsuspend.lua
create mode 100644 tests/test-sigtimedwait.lua
create mode 100644 tests/test-sigwait.lua
create mode 100644 tests/test-sigwaitinfo.lua
--
2.11.0
3 years, 11 months