DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Threads

Creating a new thread

In SVR4.2MP and SCO OpenServer processes are single-threaded when they start running new programs (that is, on entry to main, following a successful call to exec(S)). The thread created to execute main is known as the ``initial thread''. If no additional threads are created, a process can continue to execute with the same semantics as the traditional UNIX process.

New threads can be created via the thr_create(S) routine

   int thr_create(
   	void     *stack_address,
   	size_t   stack_size,
   	void     *(*start_routine)(void *arg),
   	void     *arg,
   	long     flags,
   	thread_t *new_thread
   );
which takes the following parameters:

stack_address and stack_size
These define the stack space for the new thread. (This space is used for function call transactions and for automatic variables in functions called by the thread.)

The stack of the traditional UNIX process has ``autogrow'' support by the operating system. That is, if the stack grows beyond its initial size the operating system automatically increases its size as needed (or until it runs into some other defined segment). However, threads (other than the initial thread) use stacks that do not have autogrow support; consequently, the stacks should be allocated to meet the maximum needs of the thread.

As a convenience, the Threads Library will implicitly allocate a reasonably-sized stack (twice the page size or 16K bytes, whichever is greater) if stack_address and stack_size are set to NULL and 0, respectively,


start_routine and arg
These parameters define the starting condition of the newly created thread. start_routine is the function address where the new thread's execution will begin and arg is the argument that start_routine will receive.

start_routine takes a single parameter of type (void *) and returns a value of the same type. These values can be used (with type casts) to pass values (or aggregations of values in structures) of any type.


NOTE: For portability, do not cast an int to (void *), and then cast it back to int. These values should only be used as pointers; otherwise, information can be lost.

Of course, a thread need not be entirely defined by a single function. That initial function will typically call other functions.


flags
These flags will be discussed as their respective topics arise later in this section. These flags are not mutually exclusive; they can be combined with a bitwise inclusive OR. For each flag, the relevant section is shown:

THR_SUSPENDED
``Managing thread scheduling''

THR_BOUND
``Managing threads concurrency''

THR_DETACHED
``Waiting for thread termination''

THR_INCR_CONC
``Managing threads concurrency''

THR_DAEMON
``Terminating a thread''

new_thread
The ``thread ID'' of the newly created thread is delivered at this address.


NOTE: thr_create(S) and most other functions in the Threads Library return 0 on success. On failure, instead of setting the errno global variable, they return the error code as the function's value.

The creation of one thread by another is conceptually similar but not identical to the creation of a new process by another process via the fork(S) system call. Some differences are:


Next topic: Terminating a thread
Previous topic: Basic threads management

© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005