Sebastian Huber
Sebastian Huber
As far as I know in Git, a committer can sign individual commits and tags can be signed. What you cannot do is signing a commit multiple times. You cannot...
> > What you cannot do is signing a commit multiple times. > > To clarify, this is how I've always envisioned this working: > > 1. Alice adds three...
A plugin interface to register custom commands would be great. You probably have something in mind how this should work. Would you mind adding an issue for it? I can...
The approach with a report and "the current version of the requirement set" brings us back to the fingerprint, see #358. With a cryptographically secure fingerprint you could dump the...
I guess it would require a bit of work make Doorstop fit for millions of items. The items are just a directed, acyclic graph containing key-value pairs, so the data...
The basic problem is that it is implementation-defined if char is signed or unsigned. See also https://stackoverflow.com/questions/17975913/does-ctype-h-still-require-unsigned-char. I think all the is*(x) calls from ctype.h should be changed to is*((unsigned...
The libbsd upstream is based on FreeBSD head 2018-12-20. The FreeBSD 12 release was 2018-12-11: https://www.freebsd.org/releases/12.0R/announce.html It includes an update of wpa_supplicant to version 2.7. It includes an update of...
> > Task stacks moved to the internal SRAM in the grisp-sd-sample. This improves TCP throughput by about 100KiB/s. > > @sebhub I fail to see how this is done....
Yes, it is harder for the compiler to optimize the memset() away. What about link-time optimization?
I have to admit that I did test the '%+p' using glibc. It seems that it is not defined by POSIX. ```c #include void print(void *p) { printf("'%20p' '%-20p' '%+20p'\n",...