Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2004-10-01 15:18:10 +0400
committerCorinna Vinschen <corinna@vinschen.de>2004-10-01 15:18:10 +0400
commitc6ef5fb7ece1079ccd298b89b63c051cbb7b80e0 (patch)
tree5c90ad48b996a4c2b18dac77d152735b441fecff /winsup/cygserver/ChangeLog
parent00ee07cb12cc19aedd03e1a73ccad03151cb712b (diff)
* sysv_sem.cc: Update to FreeBSD version 1.69.
1.68: Reduce the overhead of semop() by using the kernel stack instead of malloc'd memory to store the operations array if it is small enough to fit. 1.69: Adjust the number of processes waiting on a semaphore properly if we're woken up in the middle of sleeping.
Diffstat (limited to 'winsup/cygserver/ChangeLog')
-rw-r--r--winsup/cygserver/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/winsup/cygserver/ChangeLog b/winsup/cygserver/ChangeLog
index 99b69a24e..5597350aa 100644
--- a/winsup/cygserver/ChangeLog
+++ b/winsup/cygserver/ChangeLog
@@ -1,3 +1,12 @@
+2004-10-01 Corinna Vinschen <corinna@vinschen.de>
+
+ * sysv_sem.cc: Update to FreeBSD version 1.69.
+ 1.68: Reduce the overhead of semop() by using the kernel stack
+ instead of malloc'd memory to store the operations array if it
+ is small enough to fit.
+ 1.69: Adjust the number of processes waiting on a semaphore properly
+ if we're woken up in the middle of sleeping.
+
2004-09-23 Corinna Vinschen <corinna@vinschen.de>
* sysv_shm.cc (kern_shmat): Avoid compiler warning.