~ubuntu-branches/ubuntu/intrepid/raidutils/intrepid

« back to all changes in this revision

Viewing changes to raideng/threads.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Barak Pearlmutter
  • Date: 2004-05-18 11:33:42 UTC
  • Revision ID: james.westby@ubuntu.com-20040518113342-tyqavmso5q351xi2
Tags: upstream-0.0.4
ImportĀ upstreamĀ versionĀ 0.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 1996-2004, Adaptec Corporation
 
2
 * All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions are met:
 
6
 *
 
7
 * - Redistributions of source code must retain the above copyright notice, this
 
8
 *   list of conditions and the following disclaimer.
 
9
 * - Redistributions in binary form must reproduce the above copyright notice,
 
10
 *   this list of conditions and the following disclaimer in the documentation
 
11
 *   and/or other materials provided with the distribution.
 
12
 * - Neither the name of the Adaptec Corporation nor the names of its
 
13
 *   contributors may be used to endorse or promote products derived from this
 
14
 *   software without specific prior written permission.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
17
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
18
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
19
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
20
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
21
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
22
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
23
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
24
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
25
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
26
 * POSSIBILITY OF SUCH DAMAGE.
 
27
 */
 
28
 
 
29
//File - THREADS.C
 
30
//***************************************************************************
 
31
//
 
32
//Description:
 
33
//
 
34
//      This file contains function definitions to work with threads
 
35
//in an OS independent manner.
 
36
//
 
37
//Author:
 
38
//Date:
 
39
//
 
40
//Editors:
 
41
//
 
42
//Remarks:
 
43
//
 
44
//
 
45
//***************************************************************************
 
46
 
 
47
 
 
48
//Include Files -------------------------------------------------------------
 
49
 
 
50
#include <osd_util.h>
 
51
#include <unistd.h>
 
52
#include <stdlib.h>
 
53
//#include <process.h>    /* exit, Thread...., delay          */
 
54
 
 
55
 
 
56
typedef void    (*threadFn_T) (void *);
 
57
 
 
58
 
 
59
//Function - osdSwitchThreads() - start
 
60
//===========================================================================
 
61
//
 
62
//Description:
 
63
//
 
64
//      This function switches control to the task switcher in a non-
 
65
//preemptive multi-tasking operating system.   A call to this function
 
66
//will give other threads a chance to execute.
 
67
//
 
68
//Parameters:
 
69
//
 
70
//Return Value:
 
71
//
 
72
//Remarks: (Side effects, Assumptions, Warnings...)
 
73
//
 
74
//---------------------------------------------------------------------------
 
75
 
 
76
void osdSwitchThreads()
 
77
{
 
78
 // ThreadSwitch();
 
79
}
 
80
 
 
81
 
 
82
 
 
83
//Function - osdStartThread() - start
 
84
//===========================================================================
 
85
//
 
86
//Description:
 
87
//
 
88
//      This function starts the specified thread function.
 
89
//
 
90
//Parameters:
 
91
//
 
92
//   fn_P       = Pointer to the thread function
 
93
//   param_P    = Pointer to the thread function input parameter structure
 
94
//
 
95
//Return Value:
 
96
//
 
97
//   0          = Successfull
 
98
//   non-zero   = Failure, unable to start the thread
 
99
//
 
100
//Remarks: (Side effects, Assumptions, Warnings...)
 
101
//
 
102
//---------------------------------------------------------------------------
 
103
 
 
104
uLONG   osdStartThread(void *fn_P,void *param_P)
 
105
{
 
106
  uLONG retVal=0;
 
107
  int P_ID;
 
108
 
 
109
  // Call the thread function
 
110
 
 
111
   if((P_ID = fork()) == -1)
 
112
        retVal=1;
 
113
 
 
114
  // If The PID Is 0, This Is The Child, So Go Process The Connection
 
115
 
 
116
    else if(!P_ID)
 
117
           {
 
118
             alarm(60);
 
119
             ((threadFn_T)fn_P)(param_P);
 
120
             exit(0);
 
121
            }
 
122
  return (retVal);
 
123
}
 
124
//osdStartThread() - end