Pedro Tammela

Results 10 issues of Pedro Tammela

Since we moved all the builds into GitHub, we can remove the external integration with appveyor.

The test suite is not covering some branches. We shall increase our tests based on the reports from codecov.

Semicolons are present in the language because they solve an ambiguity in the grammar. The reference manual explains this clearly in [§3.3.1](https://www.lua.org/manual/5.3/manual.html#3.3.1)

Compiling with `_FORTIFY_SOURCE`, which might standard in some distros, seems to break the compilation process with an error on libc's function `vnsprintf()`. The following patch can fix the compilation: ```patch...

Lua 5.4 introduced a new parser for numbers. In 5.3 and below code like below do run: ```Lua Lua 5.3.3 Copyright (C) 1994-2016 Lua.org, PUC-Rio > x = 1.print(x) 1.0...

In Linux 6.9 a new ioctl for epoll was added: https://man.archlinux.org/man/ioctl_eventpoll.2.en It's used for busy polling sockets

S-waiting-on-review

Update the musl headers in CI to use alpine-linux instead of sabotage-linux. Alpine also uses musl but follows the linux stable releases, providing more up-to-date headers. I also took the...

S-waiting-on-review

Remove the comment of these socket options. Reference: https://elixir.bootlin.com/linux/latest/source/include/uapi/asm-generic/socket.h

S-waiting-on-review

I'm interested in these socket options which are commented out: https://docs.rs/libc/latest/src/libc/unix/linux_like/linux/arch/generic/mod.rs.html#109 Digging through the git history and issues I did not see any specific issue with these constants when they...

# Description Adds devmem constants and structs. Devmem was merged recently (6.12). I had also add all the other missing `SO_` constants for completion. As usual, musl is way behind...

S-waiting-on-author
O-linux
O-unix
O-mips
O-sparc
stable-nominated