Re: process stuck in a sched_yield() loop

2015-05-09 Thread Philip Guenther
On Thu, 7 May 2015, David Coppa wrote: > Can somebody with the necessary skills help me with this? > > $ cd /usr/ports/devel/libinotify/ && make clean fake && make test > > I remember this used to work... Now, most of the times, the > 'check_libinotify' process brings the CPU to 100% and it's st

Re: bug/inconsistency in OpenBSD sed(1) vs. FreeBSD sed(1) [patch]

2015-05-09 Thread Tim Chase
On 2015-05-09 10:45, Sébastien Marie wrote: > > Here a small patch to sed to make 'i' and 'a' command to always > > append "\n" after 'text'. > > After realizing that even if the patch is simple, it could break a > lot of thing (changing the behaviour of 'i' and 'a' command will > necessary break

Re: bug/inconsistency in OpenBSD sed(1) vs. FreeBSD sed(1) [patch]

2015-05-09 Thread Todd C. Miller
On Sat, 09 May 2015 06:47:05 +0200, =?utf-8?Q?S=C3=A9bastien?= Marie wrote: > Here a small patch to sed to make 'i' and 'a' command to always append > "\n" after 'text'. > > While here, remove 'len' field from 'struct s_appends'. It was just used > for AP_STRING (used for 'a' command), and the sw

Re: bug/inconsistency in OpenBSD sed(1) vs. FreeBSD sed(1) [patch]

2015-05-09 Thread Sébastien Marie
On Sat, May 09, 2015 at 06:47:05AM +0200, Sébastien Marie wrote: > > Hi, > > Here a small patch to sed to make 'i' and 'a' command to always append > "\n" after 'text'. > > While here, remove 'len' field from 'struct s_appends'. It was just used > for AP_STRING (used for 'a' command), and the sw