Download List

專案描述

The JThread package contains classes that
represent a thread and a mutex. On a Unix-like
platform, the pthread library is used as the
underlying thread mechanism. On an MS Windows
platform, Win32 threads are used. By using these
wrapper classes, you can easily create
applications that use threads without having to
worry about which platform the program will be
running on.

System Requirements

System requirement is not defined
Information regarding Project Releases and Project Resources. Note that the information here is a quote from Freecode.com page, and the downloads themselves may not be hosted on OSDN.

2006-06-20 15:19
1.2.1

In the pthread implementation, threads are now
created in the detached state.
標籤: Stable

2006-03-20 12:50
1.2.0

The JMutexAutoLock class was added. In Win32 and
WinCE, it is now possible to use a critical
section object instead of a mutex handle.
標籤: Stable

2005-09-14 17:46
1.1.2

In the Win32 code, "CreateThread" was changed to
"_beginthreadex", which should be a safer choice.
標籤: Stable, Code cleanup

2004-12-25 15:34
1.1.1

This release fixes a handle leak in the JThread implementation.
標籤: Stable

2004-09-05 09:37
1.1.0

The 'Start' function of the JThread class will now only return when the user's 'Thread' function has called 'ThreadStarted'. This way, when the 'Start' function returns, we can be really sure that our own thread code is started.
標籤: Stable

Project Resources