File:  [ELWIX - Embedded LightWeight unIX -] / libaitrpc / inc / defs.h
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Fri Jun 18 01:48:06 2010 UTC (14 years ago) by misho
Branches: MAIN
CVS tags: HEAD
Initial revision

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

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