Source Activity

Syndicate content
Haiku's main repository
Updated: 46 min 46 sec ago

posixtestsuite: Delete from tree.

Mon, 2015-06-29 20:46
The Open POSIX Testsuite can now be found at https://github.com/haiku/open_posix_testsuite - most of the patches can be found in "master", and the full Git history of this directory can be found in the "from_haiku_trunk" branch (the patches there should eventually be merged to "master", whenever someone has time to look at it.) The Open POSIX Testsuite can now be found at https://github.com/haiku/open_posix_testsuite - most of the patches can be found in "master", and the full Git history of this directory can be found in the "from_haiku_trunk" branch (the patches there should eventually be merged to "master", whenever someone has time to look at it.)
Categories: Development

Use B_CONTROL_HIGHLIGHT_COLOR to draw outline

Mon, 2015-06-29 19:20
In Tracker's TitleView, use an user defined color to draw outline when moving columns rather than hardcoded color. In Tracker's TitleView, use an user defined color to draw outline when moving columns rather than hardcoded color.
Categories: Development

Incorrect font applied in Add-on submenu

Mon, 2015-06-29 15:27
When accessing the Tracker Add-on menu from ContainerWindow's top menu, the font in Add-Ons submenu would change from its parent menu. When accessing the Tracker Add-on menu from ContainerWindow's top menu, the font in Add-Ons submenu would change from its parent menu.
Categories: Development

netresolv: Get rid of BSD strsep compat code.

Mon, 2015-06-29 15:14
We already have this in our libbsd. We already have this in our libbsd.
Categories: Development

netresolv/inet: Merge remaining patches from 2013 to current HEAD.

Mon, 2015-06-29 13:49
Commits merged from the semi-official Git mirror of NetBSD trunk (https://github.com/IIJ-NetBSD/netbsd-src/ - inet is in the tree at lib/libc/inet/). Commit authors/messages in chronological order follow: --------------------------------------- From: christos Date: Mon, 10 Feb 2014 16:29:30 +0000 Subject: PR/48585: Henning Petersen: Always set errno when returning NULL. From: christos Date: Mon, 10 Feb 2014 16:30:54 +0000 Subject: remove unneeded code, and kill parens from return Commits merged from the semi-official Git mirror of NetBSD trunk (https://github.com/IIJ-NetBSD/netbsd-src/ - inet is in the tree at lib/libc/inet/). Commit authors/messages in chronological order follow: --------------------------------------- From: christos Date: Mon, 10 Feb 2014 16:29:30 +0000 Subject: PR/48585: Henning Petersen: Always set errno when returning NULL. From: christos Date: Mon, 10 Feb 2014 16:30:54 +0000 Subject: remove unneeded code, and kill parens from return
Categories: Development

netresolv/resolv: Merge remaining patches from 2013 to current HEAD.

Mon, 2015-06-29 00:48
Commits merged from the semi-official Git mirror of NetBSD trunk (https://github.com/IIJ-NetBSD/netbsd-src/ - NetResolv is in the tree at lib/libc/netresolv/). Commit authors/messages in chronological order follow: --------------------------------------- From: wiz Date: Mon, 9 Dec 2013 09:35:17 +0000 Subject: Fix typo ("then" instead of "than") From: christos Date: Tue, 16 Sep 2014 01:30:00 +0000 Subject: close on exec hostaliases From: christos Date: Tue, 11 Nov 2014 03:29:24 +0000 Subject: PR/48475: YAMAGUCHI Takanori: EDNS option broken with unbound. struct querybuf in net/gethnamaddr.c defines MAXPACKET to 64K. This in turn gets passed down until it reached res_nopt(..., answer, anslen), where the size of the buffer must fit in 16 bits. Unfortunately we end up being one more than the max so we end up sending a 0 as the size and unbound does not like that. Instead we clip now to 64K - 1, and everyone is happy. XXX: Pullup to 7. From: christos Date: Tue, 24 Feb 2015 17:57:08 +0000 Subject: belated removal of the advertising clause. Commits merged from the semi-official Git mirror of NetBSD trunk (https://github.com/IIJ-NetBSD/netbsd-src/ - NetResolv is in the tree at lib/libc/netresolv/). Commit authors/messages in chronological order follow: --------------------------------------- From: wiz Date: Mon, 9 Dec 2013 09:35:17 +0000 Subject: Fix typo ("then" instead of "than") From: christos Date: Tue, 16 Sep 2014 01:30:00 +0000 Subject: close on exec hostaliases From: christos Date: Tue, 11 Nov 2014 03:29:24 +0000 Subject: PR/48475: YAMAGUCHI Takanori: EDNS option broken with unbound. struct querybuf in net/gethnamaddr.c defines MAXPACKET to 64K. This in turn gets passed down until it reached res_nopt(..., answer, anslen), where the size of the buffer must fit in 16 bits. Unfortunately we end up being one more than the max so we end up sending a 0 as the size and unbound does not like that. Instead we clip now to 64K - 1, and everyone is happy. XXX: Pullup to 7. From: christos Date: Tue, 24 Feb 2015 17:57:08 +0000 Subject: belated removal of the advertising clause.
Categories: Development

Do not hardcode tab height in ResizeToFit()

Sun, 2015-06-28 23:02
Categories: Development

netresolv: ensure pthread_rwlock is initialized before use

Sun, 2015-06-28 22:17
Under some circumstances the pthread_rwlock protecting the name service configuration was not initialized, and the calls to rdlock/wrlock would silently fail. Under some circumstances the pthread_rwlock protecting the name service configuration was not initialized, and the calls to rdlock/wrlock would silently fail.
Categories: Development

Debugger: Add config view for signals.

Sun, 2015-06-28 21:34
SignalsConfigView: - Provide basic configuration for signal dispositions. TeamSettingsWindow: - Add signals view to tab list. SignalsConfigView: - Provide basic configuration for signal dispositions. TeamSettingsWindow: - Add signals view to tab list.
Categories: Development

libnetwork: Fixed getifaddrs() implementation.

Sun, 2015-06-28 21:28
* It overwrote the request buffer, and tried to access its previous contents afterwards. * It incorrectly copied sockaddrs. * It did not initialize all members. * It did not check for error codes from ioctl(). * It did not properly set errno in many cases, but just returned an error right away. * This hopefully fixes bug #12156. Adrien obviously had a bad day :-) * It overwrote the request buffer, and tried to access its previous contents afterwards. * It incorrectly copied sockaddrs. * It did not initialize all members. * It did not check for error codes from ioctl(). * It did not properly set errno in many cases, but just returned an error right away. * This hopefully fixes bug #12156. Adrien obviously had a bad day :-)
Categories: Development

Debugger: Add definitions for signal dispositions.

Sun, 2015-06-28 21:26
- Add header for defining the possible signal dispositions that can be configured. - Add corresponding UI helper function to map to a string representation. - Add header for defining the possible signal dispositions that can be configured. - Add corresponding UI helper function to map to a string representation.
Categories: Development

BNetworkAddressResolver: fix getting address of given family

Sun, 2015-06-28 19:12
* Fix wrong nesting of loops which are supposed to skip the first (*cookie) number of elements and those with the wrong address family * With a start value of first = 0 (the usual case), the old code would always just return the first element of the addrinfo list, no matter which address family was actually requested * Fix wrong nesting of loops which are supposed to skip the first (*cookie) number of elements and those with the wrong address family * With a start value of first = 0 (the usual case), the old code would always just return the first element of the addrinfo list, no matter which address family was actually requested
Categories: Development

cmedia: update to newer spinlock API.

Sun, 2015-06-28 17:12
Categories: Development

Debugger: Layout changes to team settings window.

Sun, 2015-06-28 01:48
TeamSettingsWindow: - Split out functionality into separate views for images and exceptions, which in turn are held in dedicated tabs. TeamSettingsWindow: - Split out functionality into separate views for images and exceptions, which in turn are held in dedicated tabs.
Categories: Development

Debugger: Code reorganization, no functional change.

Sun, 2015-06-28 01:12
- Rename BreakConditionConfigWindow to TeamSettingsWindow, and move to own dedicated subfolder. Adjust callers accordingly. Preparation work for other changes to come. - Rename BreakConditionConfigWindow to TeamSettingsWindow, and move to own dedicated subfolder. Adjust callers accordingly. Preparation work for other changes to come.
Categories: Development