- Fix a possible signal handling race condition.

- Bump PORTREVISION

PR:		ports/64670
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-03-24 22:41:29 +00:00
parent 96f7915d1f
commit 9612844326
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=105161
3 changed files with 27 additions and 0 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= libowfat
PORTVERSION= 0.18
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://dl.fefe.de/

View file

@ -0,0 +1,13 @@
! fix a possible signal handling race condition
! obtained from libowfat cvs
--- io/io_tryread.c 7 Nov 2003 22:11:30 -0000 1.4
+++ io/io_tryread.c 7 Mar 2004 21:48:56 -0000 1.5
@@ -21,7 +21,7 @@
e->next_read=-1;
return -1;
}
- new.it_interval.tv_usec=0;
+ new.it_interval.tv_usec=10000;
new.it_interval.tv_sec=0;
new.it_value.tv_usec=10000;
new.it_value.tv_sec=0;

View file

@ -0,0 +1,13 @@
! fix a possible signal handling race condition
! obtained from libowfat cvs
--- io/io_trywrite.c 27 Feb 2004 17:04:03 -0000 1.5
+++ io/io_trywrite.c 7 Mar 2004 21:48:56 -0000 1.6
@@ -22,7 +22,7 @@
e->next_write=-1;
return -1;
}
- new.it_interval.tv_usec=0;
+ new.it_interval.tv_usec=10000;
new.it_interval.tv_sec=0;
new.it_value.tv_usec=10000;
new.it_value.tv_sec=0;