==> ChangeLog <==
2011-11-17 09:46 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/filebuf.c
! fixed silly typo in previous fix: 2011-09-02 14:03 UTC+0200
! fixed race condition in code emulating DOS/Windows file lock
behavior in POSIX systems. The problem could be exploited by
Harbour MT programs using the same files in many threads in
more then on process. Many thanks to Zsolt for the info and
test code example.
[TOMERGE 3.0]
41 lines
1.8 KiB
Plaintext
41 lines
1.8 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Use this format for entry headers:
|
|
YYYY-MM-DD HH:MM UTC[-|+]hhmm Your Full Name (your_email address)
|
|
2010-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
|
|
|
|
This work is licensed under the Creative Commons Attribution-ShareAlike
|
|
License. To view a copy of this license, visit
|
|
http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to
|
|
Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305,
|
|
USA. A summary of the license and the full legal text is included
|
|
in file: COPYING. If you wish to distribute some or all of this work
|
|
under different terms, please contact respective author(s).
|
|
The license applies to all entries newer than 2009-04-28.
|
|
*/
|
|
|
|
2011-11-23 17:54 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
|
==> ChangeLog <==
|
|
2011-11-17 09:46 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
|
* harbour/src/rtl/filebuf.c
|
|
! fixed silly typo in previous fix: 2011-09-02 14:03 UTC+0200
|
|
! fixed race condition in code emulating DOS/Windows file lock
|
|
behavior in POSIX systems. The problem could be exploited by
|
|
Harbour MT programs using the same files in many threads in
|
|
more then on process. Many thanks to Zsolt for the info and
|
|
test code example.
|
|
[TOMERGE 3.0]
|
|
==> harbour/ChangeLog <==
|
|
May 31, 1999 Ron Pinkas
|
|
Harbour.l added support for "[String]" inside ARRAY INDEX expressions.
|
|
Added "Sysntax error :" message for the macro operator (&)
|
|
when followed by a string delimiter.
|
|
|
|
June 1st. 1999 00:30 Ron Pinkas
|
|
Harbour.y -> modified pcode generation to move the push of the counter variable to the NEXT rather than the FOR
|
|
so loop code may manipulate the counter vaiable.
|
|
|
|
TEST/WORKING/TestFor.prg -> added this file
|