Fixing bug in LOG_LEVEL_LOG
[privoxy.git] / amiga.h
1 #ifdef AMIGA
2 #ifndef _AMIGA_H
3 #define _AMIGA_H
4 #define AMIGA_H_VERSION "$Id: amiga.h,v 1.2 2001/05/23 00:13:58 joergs Exp $"
5 /*********************************************************************
6  *
7  * File        :  $Source: /cvsroot/ijbswa/current/amiga.h,v $
8  *
9  * Purpose     :  Amiga-specific declarations.
10  *
11  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
12  *                IJBSWA team.  http://ijbswa.sourceforge.net
13  *
14  *                This program is free software; you can redistribute it 
15  *                and/or modify it under the terms of the GNU General
16  *                Public License as published by the Free Software
17  *                Foundation; either version 2 of the License, or (at
18  *                your option) any later version.
19  *
20  *                This program is distributed in the hope that it will
21  *                be useful, but WITHOUT ANY WARRANTY; without even the
22  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
23  *                PARTICULAR PURPOSE.  See the GNU General Public
24  *                License for more details.
25  *
26  *                The GNU General Public License should be included with
27  *                this file.  If not, you can view it at
28  *                http://www.gnu.org/copyleft/gpl.html
29  *                or write to the Free Software Foundation, Inc., 59
30  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  *
32  * Revisions   :
33  *    $Log: amiga.h,v $
34  *    Revision 1.2  2001/05/23 00:13:58  joergs
35  *    AmigaOS support fixed.
36  *
37  *    Revision 1.1.1.1  2001/05/15 13:58:46  oes
38  *    Initial import of version 2.9.3 source tree
39  *
40  *
41  *********************************************************************/
42 \f
43
44 #define _KERNEL
45 #include <sys/socket.h>
46 #undef _KERNEL
47
48 #define __NOLIBBASE__
49 #include <proto/socket.h>
50 #undef __NOLIBBASE__
51
52 #define __CONSTLIBBASEDECL__ const
53 #include <proto/exec.h>
54 #include <exec/tasks.h>
55 #include <proto/dos.h>
56 #include <dos/dostags.h>
57
58 struct UserData
59 {
60    struct Library *sb;
61    int eno;
62 };
63
64 #define SocketBase ((struct Library *)(((struct UserData *)(FindTask(NULL)->tc_UserData))->sb))
65 #define errno (((struct UserData *)(FindTask(NULL)->tc_UserData))->eno)
66 #define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,NULL)
67 #define inet_ntoa(x) Inet_NtoA(x.s_addr)
68
69 extern int childs;
70 extern struct Task *main_task;
71
72 void InitAmiga(void);
73 void amiga_exit(void);
74 void __memCleanUp(void);
75 __saveds ULONG server_thread(void);
76
77 #define exit(x)\
78 {\
79    if(main_task)\
80    {\
81       if(main_task == FindTask(NULL))\
82       {\
83          while(childs) Delay(10*TICKS_PER_SECOND); exit(x);\
84       } else {\
85          CloseLibrary(SocketBase);\
86          childs--;\
87          RemTask(NULL);\
88       }\
89    }\
90 }
91
92 #define EINTR 0
93
94 #endif /* ndef _AMIGA_H */
95 #endif /* def AMIGA */