Annotation of libaitrpc/inc/defs.h, revision 1.1.1.1.2.2

1.1       misho       1: /*************************************************************************
                      2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.1.1.1.2.2! misho       6: * $Id: defs.h,v 1.1.1.1.2.1 2010/06/18 13:36:01 misho Exp $
1.1       misho       7: *
                      8: *************************************************************************/
                      9: #ifndef __DEFS_H
                     10: #define __DEFS_H
                     11: 
                     12: 
1.1.1.1.2.2! misho      13: #define DEF_RPC_TIMEOUT                3
1.1       misho      14: 
                     15: 
                     16: #define LOGERR { \
                     17:                        rpc_Errno = errno; \
                     18:                        strlcpy(rpc_Error, strerror(errno), STRSIZ); \
                     19:                }
                     20: 
                     21: 
1.1.1.1.2.1  misho      22: extern pthread_mutex_t rpc_mtx;
                     23: extern int rpc_Kill;
                     24: 
1.1       misho      25: extern int rpc_Errno;
                     26: extern char rpc_Error[];
                     27: 
                     28: inline void rpc_SetErr(int eno, char *estr, ...);
                     29: 
                     30: 
                     31: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>