1 /* BSDI osd_util.h,v 1.8 1998/06/03 19:14:58 karels Exp */
4 * Copyright (c) 1996-1999 Distributed Processing Technology Corporation
7 * Redistribution and use in source form, with or without modification, are
8 * permitted provided that redistributions of source code must retain the
9 * above copyright notice, this list of conditions and the following disclaimer.
11 * This software is provided `as is' by Distributed Processing Technology and
12 * any express or implied warranties, including, but not limited to, the
13 * implied warranties of merchantability and fitness for a particular purpose,
14 * are disclaimed. In no event shall Distributed Processing Technology be
15 * liable for any direct, indirect, incidental, special, exemplary or
16 * consequential damages (including, but not limited to, procurement of
17 * substitute goods or services; loss of use, data, or profits; or business
18 * interruptions) however caused and on any theory of liability, whether in
19 * contract, strict liability, or tort (including negligence or otherwise)
20 * arising in any way out of the use of this driver software, even if advised
21 * of the possibility of such damage.
29 ****************************************************************************
33 * This file contains defines and function prototypes that are
34 *operating system dependent. The resources defined in this file
35 *are not specific to any particular application.
37 *Copyright Distributed Processing Technology, Corp.
39 * Maitland, Fl. 32751 USA
40 * Phone: (407) 830-5522 Fax: (407) 260-5366
43 *Author: Doug Anderson
51 *****************************************************************************/
54 /*Definitions - Defines & Constants ----------------------------------------- */
56 /*----------------------------- */
57 /* Operating system selections: */
58 /*----------------------------- */
60 /*#define _DPT_MSDOS */
61 /*#define _DPT_WIN_3X */
62 /*#define _DPT_WIN_4X */
63 /*#define _DPT_WIN_NT */
64 /*#define _DPT_NETWARE */
67 /*#define _DPT_UNIXWARE */
68 /*#define _DPT_SOLARIS */
69 /*#define _DPT_NEXTSTEP */
70 /*#define _DPT_BANYAN */
72 /*-------------------------------- */
73 /* Include the OS specific defines */
74 /*-------------------------------- */
76 /*#define OS_SELECTION From Above List */
77 /*#define SEMAPHORE_T ??? */
78 /*#define DLL_HANDLE_T ??? */
80 #if (defined(KERNEL) && (defined(__FreeBSD__) || defined(__bsdi__)))
81 # include "i386/isa/dpt_osd_defs.h"
83 # include "osd_defs.h"
98 #ifndef DPT_RUNTIME_IMPORT
99 #define DPT_RUNTIME_IMPORT DPT_IMPORT
102 /*--------------------- */
103 /* OS dependent defines */
104 /*--------------------- */
106 #if defined (_DPT_MSDOS) || defined (_DPT_WIN_3X)
112 #if defined (_DPT_SCO) || defined (_DPT_UNIXWARE) || defined (_DPT_SOLARIS) || defined (_DPT_AIX) || defined (SNI_MIPS) || defined (_DPT_BSDI) || defined (_DPT_FREE_BSD) || defined(_DPT_LINUX)
116 #if defined (_DPT_WIN_3x) || defined (_DPT_WIN_4X) || defined (_DPT_WIN_NT) \
117 || defined (_DPT_OS2)
118 #define _DPT_DLL_SUPPORT
121 #if !defined (_DPT_MSDOS) && !defined (_DPT_WIN_3X) && !defined (_DPT_NETWARE)
122 #define _DPT_PREEMPTIVE
125 #if !defined (_DPT_MSDOS) && !defined (_DPT_WIN_3X)
126 #define _DPT_MULTI_THREADED
129 #if !defined (_DPT_MSDOS)
130 #define _DPT_MULTI_TASKING
133 /* These exist for platforms that */
134 /* chunk when accessing mis-aligned */
136 #if defined (SNI_MIPS) || defined (_DPT_SOLARIS)
137 #if defined (_DPT_BIG_ENDIAN)
138 #if !defined (_DPT_STRICT_ALIGN)
139 #define _DPT_STRICT_ALIGN
144 /* Determine if in C or C++ mode */
151 /*-------------------------------------------------------------------*/
152 /* Under Solaris the compiler refuses to accept code like: */
153 /* { {"DPT"}, 0, NULL .... }, */
154 /* and complains about the {"DPT"} part by saying "cannot use { } */
155 /* to initialize char*". */
157 /* By defining these ugly macros we can get around this and also */
158 /* not have to copy and #ifdef large sections of code. I know that */
159 /* these macros are *really* ugly, but they should help reduce */
160 /* maintenance in the long run. */
162 /*-------------------------------------------------------------------*/
163 #if !defined (DPTSQO)
164 #if defined (_DPT_SOLARIS)
174 /*---------------------- */
175 /* OS dependent typedefs */
176 /*---------------------- */
178 #if defined (_DPT_MSDOS) || defined (_DPT_SCO)
179 #define BYTE unsigned char
180 #define WORD unsigned short
183 #ifndef _DPT_TYPEDEFS
184 #define _DPT_TYPEDEFS
185 typedef unsigned char uCHAR;
186 typedef unsigned short uSHORT;
187 typedef unsigned int uINT;
188 typedef unsigned long uLONG;
202 /*Prototypes - function ----------------------------------------------------- */
205 extern "C" { /* Declare all these functions as "C" functions */
208 /*------------------------ */
209 /* Byte reversal functions */
210 /*------------------------ */
212 /* Reverses the byte ordering of a 2 byte variable */
213 #if (!defined(osdSwap2))
214 uSHORT osdSwap2(DPT_UNALIGNED uSHORT *);
217 /* Reverses the byte ordering of a 4 byte variable and shifts left 8 bits */
218 #if (!defined(osdSwap3))
219 uLONG osdSwap3(DPT_UNALIGNED uLONG *);
224 #include "novpass.h" /* For DPT_Bswapl() prototype */
225 /* Inline the byte swap */
227 inline uLONG osdSwap4(uLONG *inLong) {
228 return *inLong = DPT_Bswapl(*inLong);
231 #define osdSwap4(inLong) DPT_Bswapl(inLong)
234 /* Reverses the byte ordering of a 4 byte variable */
235 # if (!defined(osdSwap4))
236 uLONG osdSwap4(DPT_UNALIGNED uLONG *);
239 /* The following functions ALWAYS swap regardless of the *
240 * presence of DPT_BIG_ENDIAN */
242 uSHORT trueSwap2(DPT_UNALIGNED uSHORT *);
243 uLONG trueSwap4(DPT_UNALIGNED uLONG *);
248 /*-------------------------------------*
249 * Network order swap functions *
251 * These functions/macros will be used *
252 * by the structure insert()/extract() *
255 * We will enclose all structure *
256 * portability modifications inside *
257 * #ifdefs. When we are ready, we *
258 * will #define DPT_PORTABLE to begin *
259 * using the modifications. *
260 *-------------------------------------*/
261 uLONG netSwap4(uLONG val);
263 #if defined (_DPT_BIG_ENDIAN)
265 // for big-endian we need to swap
268 #define NET_SWAP_2(x) (((x) >> 8) | ((x) << 8))
272 #define NET_SWAP_4(x) netSwap4((x))
277 // for little-endian we don't need to do anything
280 #define NET_SWAP_2(x) (x)
284 #define NET_SWAP_4(x) (x)
291 /*----------------------------------- */
292 /* Run-time loadable module functions */
293 /*----------------------------------- */
295 /* Loads the specified run-time loadable DLL */
296 DLL_HANDLE_T osdLoadModule(uCHAR *);
297 /* Unloads the specified run-time loadable DLL */
298 uSHORT osdUnloadModule(DLL_HANDLE_T);
299 /* Returns a pointer to a function inside a run-time loadable DLL */
300 void * osdGetFnAddr(DLL_HANDLE_T,uCHAR *);
302 /*--------------------------------------- */
303 /* Mutually exclusive semaphore functions */
304 /*--------------------------------------- */
306 /* Create a named semaphore */
307 SEMAPHORE_T osdCreateNamedSemaphore(char *);
308 /* Create a mutually exlusive semaphore */
309 SEMAPHORE_T osdCreateSemaphore(void);
310 /* create an event semaphore */
311 SEMAPHORE_T osdCreateEventSemaphore(void);
312 /* create a named event semaphore */
313 SEMAPHORE_T osdCreateNamedEventSemaphore(char *);
315 /* Destroy the specified mutually exclusive semaphore object */
316 uSHORT osdDestroySemaphore(SEMAPHORE_T);
317 /* Request access to the specified mutually exclusive semaphore */
318 uLONG osdRequestSemaphore(SEMAPHORE_T,uLONG);
319 /* Release access to the specified mutually exclusive semaphore */
320 uSHORT osdReleaseSemaphore(SEMAPHORE_T);
321 /* wait for a event to happen */
322 uLONG osdWaitForEventSemaphore(SEMAPHORE_T, uLONG);
323 /* signal an event */
324 uLONG osdSignalEventSemaphore(SEMAPHORE_T);
325 /* reset the event */
326 uLONG osdResetEventSemaphore(SEMAPHORE_T);
328 /*----------------- */
329 /* Thread functions */
330 /*----------------- */
332 /* Releases control to the task switcher in non-preemptive */
333 /* multitasking operating systems. */
334 void osdSwitchThreads(void);
336 /* Starts a thread function */
337 uLONG osdStartThread(void *,void *);
339 /* what is my thread id */
340 uLONG osdGetThreadID(void);
342 /* wakes up the specifed thread */
343 void osdWakeThread(uLONG);
345 /* osd sleep for x miliseconds */
346 void osdSleep(uLONG);
348 #define DPT_THREAD_PRIORITY_LOWEST 0x00
349 #define DPT_THREAD_PRIORITY_NORMAL 0x01
350 #define DPT_THREAD_PRIORITY_HIGHEST 0x02
352 uCHAR osdSetThreadPriority(uLONG tid, uCHAR priority);
355 } /* end the xtern "C" declaration */
358 #endif /* osd_util_h */