diff options
author | Ben Elliston <bje@gcc.gnu.org> | 1998-09-17 18:04:30 +1000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 1998-09-17 18:04:30 +1000 |
commit | 005dda25ff98c6762242f1eaa20eb8795f30a766 (patch) | |
tree | b8630279e559f3c950e92a27c2b4aa0daacb432a /libobjc/README.threads | |
parent | 9d2106a4a4f9d5acab8bdac8e3eb619c9ef554b6 (diff) | |
download | gcc-005dda25ff98c6762242f1eaa20eb8795f30a766.zip gcc-005dda25ff98c6762242f1eaa20eb8795f30a766.tar.gz gcc-005dda25ff98c6762242f1eaa20eb8795f30a766.tar.bz2 |
Move documentation files from egcs/gcc/objc.
From-SVN: r22461
Diffstat (limited to 'libobjc/README.threads')
-rw-r--r-- | libobjc/README.threads | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/libobjc/README.threads b/libobjc/README.threads new file mode 100644 index 0000000..5f15bd9 --- /dev/null +++ b/libobjc/README.threads @@ -0,0 +1,50 @@ +============================================================================== +README.threads - Wed Nov 29 15:16:24 EST 1995 +------------------------------------------------------------------------------ + +Limited documentation is available in the THREADS file. + +This version has been tested on Sun Solaris, SGI Irix, and Windows NT. +It should also work on any single threaded system. + +Thanks go to the following people for help test and debug the library: + + Scott Christley, scottc@ocbi.com + Andrew McCallum, mccallum@cs.rochester.edu + +galen +gchunt@cs.rochester.edu + +Any questions, bug reports, etc should be directed to: + +Scott Christley, scottc@ocbi.com + +Please do not bug Galen with email as he no longer supports the code. + +============================================================================== +Changes from prior releases (in revered chronological order): +------------------------------------------------------------------------------ + +* Fixed bug in copy part of sarray_realloc. I had an < which should + have been <=. (Bug report from Scott). + +------------------------------------------------------------------------------ + +* Support for DEC OSF/1 is definitely broken. My programs always + seg-fault when I link with libpthreads.a. + +* Thread id's are no longer int's, but are instead of type + _objc_thread_t which is typedef'ed from a void *. An invalid thread + id is denoted by NULL and not -1 as before. + +------------------------------------------------------------------------------ + +* Renamed thread-winnt.c to thread-win32.c to better reflect support + for the API on both Windows NT and Windows 95 platforms. + (Who knows, maybe even Win32s :-). + +* Fixed bugs in Win32 support as per report from Scott Christley. + +* Fixed bug in sarray_get as per report from Scott Christley. + + |