
1. DIRECTORIES

README		this file
bin/		commands and scripts
ex/		samples
ext_src/	sources of utilities built on top of StackThreads   
include/	include files
lib/		libraries and common files   
src/		StackThreads source

2. SETUP

Add the following entries to your .cshrc or other appropriate
files. Below we assume THIS_DIR is the toplevel directory of
StackThreads/MP where this README file is located, and you are using
this system on SPARC Solaris system with Solaris thread as the
underlying thread library.

-----------------------------------
setenv ST_DIR THIS_DIR

setenv ST_CPU_TYPE sparc
setenv ST_OS_TYPE solaris
setenv ST_THREAD_PKG st_solaris_thread
setenv ST_COMPILER_TYPE gcc

set path = ($ST_DIR/bin $path)
-----------------------------------

Here we list all possible choices for these variables. (*) is recommended
choice of ST_THREAD_PKG for given CPU/OS combination.


ST_CPU_TYPE	ST_OS_TYPE	ST_THREAD_PKG
sparc		solaris		st_solaris_thread(*)
				st_pthread
				st_no_thread
mips		irix		st_pthread
				st_sfork_thread(*)
				st_no_thread
alpha		osf1		st_pthread(*)
				st_no_thread
i386		solaris		st_solaris_thread(*)
				st_pthread
				st_no_thread
		winnt		st_nt_thread(*)
				st_no_thread
		linux		st_pthread(*)
				st_no_thread

