00001 /* Last edited: Sep 20 14:55 2001 (ac2) */ 00002 00003 // ####################################################################### 00004 00005 // SSAHA : Sequence Search and Alignment by Hashing Algorithm 00006 // Version 3.2, released 1st March 2004 00007 // Copyright (c) Genome Research 2002 00008 00009 // SSAHA is free software; you can redistribute it and/or modify 00010 // it under the terms of version 2 of the GNU General Public Licence 00011 // as published by the Free Software Foundation. 00012 00013 // This program is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 // GNU General Public Licence for more details. 00017 00018 // You should have received a copy of the GNU General Public Licence 00019 // along with this program; if not, write to the Free Software 00020 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00021 // or see the on-line version at http://www.gnu.org/copyleft/gpl.txt 00022 00023 // ####################################################################### 00024 00025 // Module Name : SSAHAServer 00026 // File Name : SSAHAServer.h 00027 // Language : C++ 00028 // Module Author: Anthony J. Cox (ac2@sanger.ac.uk) 00029 00030 // Include guard: 00031 #ifndef INCLUDED_SSAHAServer 00032 #define INCLUDED_SSAHAServer 00033 00034 // Description: 00035 00036 // Includes: 00037 00038 // NB it is good practise for #include statements in header files to be 00039 // replaced by forward declarations if at all possible 00040 00041 // ### Class Declarations ### 00042 00043 00044 // ### Function Declarations ### 00045 00046 // Name: 00047 // Arguments: 00048 // TYPE NAME IN/OUT COMMENT 00049 // Returns: TYPE COMMENT 00050 00051 // Wrappers for thread functions 00052 00053 //void Pthread_create 00054 //(pthread_t *tid, 00055 // const pthread_attr_t *attr, void * (*func)(void *), void *arg); 00056 00057 00058 //void Pthread_join(pthread_t tid, void **status); 00059 00060 //void Pthread_detach(pthread_t tid); 00061 00062 //void Pthread_kill(pthread_t tid, int signo); 00063 00064 00065 // End of include guard: 00066 #endif 00067 00068 // End of file SSAHAServer.h
1.5.2