svn commit: r316277 - stable/10/sys/sys

2017-03-30 Thread Ed Schouten
Author: ed Date: Thu Mar 30 15:05:58 2017 New Revision: 316277 URL: https://svnweb.freebsd.org/changeset/base/316277 Log: MFC r315732: Add forward declaration for struct vnode. The coredump() function provided by this header file has struct vnode * as an argument. Modified:

Re: svn commit: r314335 - stable/10/sys/crypto/sha2

2017-02-27 Thread Ed Schouten
this regardless! -- Ed Schouten <e...@nuxi.nl> Nuxi, 's-Hertogenbosch, the Netherlands KvK-nr.: 62051717 ___ svn-src-stable-10@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10 To unsubscribe, send any mail to "

Re: svn commit: r314335 - stable/10/sys/crypto/sha2

2017-02-27 Thread Ed Schouten
> 16]) Then it will compute the next chunk of the extended message in-place. RNDr() must then be adjusted to use W[i] instead of W[i + ii], of course. W then only needs to hold 16 elements instead of 64 or 80. -- Ed Schouten <e...@nuxi.nl> Nuxi, 's-Hertogenbosch, the Netherlands KvK-nr.: 620

Re: svn commit: r313632 - in stable/10/contrib/netbsd-tests/lib/libc/gen: . posix_spawn

2017-02-11 Thread Ed Schouten
r_t ident; /* identifier for this event */ + __uintptr_t ident; /* identifier for this event */ short filter; /* filter for event */ - u_short flags; - u_int fflags; - intptr_t data; + unsigned short flags; + unsigned int fflags; + __intptr_t data; void *udata; /* opaque user data identifier */ };

svn commit: r310320 - stable/10/lib/libc/gen

2016-12-19 Thread Ed Schouten
Author: ed Date: Tue Dec 20 07:50:49 2016 New Revision: 310320 URL: https://svnweb.freebsd.org/changeset/base/310320 Log: MFC r309650: Properly sign extend the result of jrand48() and mrand48(). These functions are supposed to return a value between [-2^31, 2^31). This doesn't

svn commit: r308091 - stable/10/include

2016-10-29 Thread Ed Schouten
Author: ed Date: Sat Oct 29 15:04:24 2016 New Revision: 308091 URL: https://svnweb.freebsd.org/changeset/base/308091 Log: Add posix_tnode to . In r307227 I've refactored the binary search tree functions to use the posix_tnode type. As this change does not apply cleanly to this version

svn commit: r302193 - stable/10/lib/libc/stdlib

2016-06-25 Thread Ed Schouten
Author: ed Date: Sat Jun 25 10:08:04 2016 New Revision: 302193 URL: https://svnweb.freebsd.org/changeset/base/302193 Log: MFC r300775: Let l64a() properly null terminate its result. Though the buffer used by l64a() is initialized with null bytes, repetetive calls may end up

svn commit: r302008 - stable/10/include

2016-06-18 Thread Ed Schouten
Author: ed Date: Sat Jun 18 12:46:50 2016 New Revision: 302008 URL: https://svnweb.freebsd.org/changeset/base/302008 Log: MFC r300998: Add missing va_list to . It looks like va_list should always be defined when XSI is enabled. It moved over to the POSIX base in the 2008

svn commit: r302006 - stable/10/sys/sys

2016-06-18 Thread Ed Schouten
Author: ed Date: Sat Jun 18 12:44:14 2016 New Revision: 302006 URL: https://svnweb.freebsd.org/changeset/base/302006 Log: MFC r301406: Don't test for INKERNEL to check whether we're in kernel space. It turns out that actually defines a macro under this name, even when we're

svn commit: r287776 - stable/10/sys/teken

2015-09-14 Thread Ed Schouten
Author: ed Date: Mon Sep 14 09:12:28 2015 New Revision: 287776 URL: https://svnweb.freebsd.org/changeset/base/287776 Log: MFC r286798 and r286827: Stop parsing digits if the value already exceeds UINT_MAX / 100. There is no need for us to support parsing values that are larger

svn commit: r286843 - in stable/10/sys: cddl/compat/opensolaris/sys kern sys

2015-08-17 Thread Ed Schouten
Author: ed Date: Mon Aug 17 12:51:46 2015 New Revision: 286843 URL: https://svnweb.freebsd.org/changeset/base/286843 Log: MFC r285715: Add an API for easily creating userspace threads in kernelspace. This change refactors the existing create_thread() function to be more

svn commit: r280020 - stable/10/usr.sbin/syslogd

2015-03-15 Thread Ed Schouten
Author: ed Date: Sun Mar 15 09:15:11 2015 New Revision: 280020 URL: https://svnweb.freebsd.org/changeset/base/280020 Log: MFC r279016: Make syslogd work in case shutdown() is POSIX-ly correct. On POSIX conformant systems, shutdown() should return ENOTCONN when not connected.