git: ifnet: Fix typo.

2017-07-15 Thread Sascha Wildner
commit fdd5cc47e6e2ce5f0883a125d11800dcff1095d3 Author: Sascha Wildner Date: Sat Jul 15 10:31:29 2017 +0200 ifnet: Fix typo. Summary of changes: sys/net/if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

git: time: Close an output file -o flag opened before execvp(3) in a child.

2017-07-15 Thread Markus Pfeiffer
commit 64f9c74081859b426d7e5c80f4cae69b2f32903a Author: Markus Pfeiffer Date: Sat Jul 15 22:38:44 2017 +0100 time: Close an output file -o flag opened before execvp(3) in a child. Taken-From: FreeBSD r157796 Summary of changes: usr.bin/time/time.c |

git: time: Handle SIGINFO in time(1)

2017-07-15 Thread Markus Pfeiffer
commit 68858f41eabbad18785e388598f125cf753e0cff Author: Markus Pfeiffer Date: Sat Jul 15 23:51:35 2017 +0100 time: Handle SIGINFO in time(1) SIGINFO printing the time the given command is running. Taken-From: FreeBSD r158560 Summary of

git: time: Use close-on-exec instead of fclose() in the child process.

2017-07-15 Thread Markus Pfeiffer
commit d8a8668b7c4180c87505ec54024f23d7b325c6af Author: Markus Pfeiffer Date: Sat Jul 15 22:58:07 2017 +0100 time: Use close-on-exec instead of fclose() in the child process. Taken-From: FreeBSD r244034 Summary of changes: usr.bin/time/time.c | 4

git: pthread: Add pthread_getthreadid_np() function, bump __DragonFly_version.

2017-07-15 Thread Imre Vadasz
commit c0f25c26521a4a85f70aa95a94bbc323503ea2ac Author: Imre Vadász Date: Sat Jul 15 11:13:36 2017 +0200 pthread: Add pthread_getthreadid_np() function, bump __DragonFly_version. Using pthread_getthreadid_np() can directly use the thread-ID value that is

git: Update the pciconf(8) database.

2017-07-15 Thread Sascha Wildner
commit 2308cf1726e91b7de2e49e4c4ab89ff6b167490c Author: Sascha Wildner Date: Sun Jul 16 02:30:50 2017 +0200 Update the pciconf(8) database. July 13, 2017 snapshot from http://pciids.sourceforge.net/ Summary of changes: share/misc/pci_vendors | 125

git: time: FreeBSD r169346

2017-07-15 Thread Markus Pfeiffer
commit 3fdbe9e9bf397d72c6ea3fd78ac6466b7bfe9912 Author: Markus Pfeiffer Date: Sat Jul 15 23:49:39 2017 +0100 time: FreeBSD r169346 - Cast to intmax_t to print tv_sec in struct timeval. - Avoid shadowing a global variable with a function argument.

git: time: Handle SIGINFO in time(1)

2017-07-15 Thread Markus Pfeiffer
commit ded6a9cac1fc8780e6deabd495ae22d94eb2e1ec Author: Markus Pfeiffer Date: Sat Jul 15 23:52:23 2017 +0100 time: Handle SIGINFO in time(1) If the process receives SIGINFO print the elapsed time. Taken-From: FreeBSD r158560 and r283073

git: time: Use clock_gettime

2017-07-15 Thread Markus Pfeiffer
commit d58ea4320a54ec8513ee27ea6f286db886217c4b Author: Markus Pfeiffer Date: Sat Jul 15 23:16:12 2017 +0100 time: Use clock_gettime gettimeofday is not suitable for measuring runtimes, as it is not guaranteed to be monotonic. Summary of changes: