File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
mpd /
src /
msg.h
Revision
1.1.1.2 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Mon Jul 22 08:44:29 2013 UTC (11 years, 5 months ago) by
misho
Branches:
mpd,
MAIN
CVS tags:
v5_9p16,
v5_9,
v5_8p7,
v5_8p1_cross,
v5_8p1,
v5_8,
v5_7p0,
v5_7,
HEAD
5.7
/*
* msg.h
*
* Written by Archie Cobbs <archie@freebsd.org>
* Copyright (c) 1995-1999 Whistle Communications, Inc. All rights reserved.
* See ``COPYRIGHT.whistle''
*/
#ifndef _MSG_H_
#define _MSG_H_
/*
* DEFINITIONS
*/
/* Messages you can send to a link or a bundle */
#define MSG_OPEN 1 /* Bring yourself up */
#define MSG_CLOSE 2 /* Bring yourself down */
#define MSG_UP 3 /* Lower layer went up */
#define MSG_DOWN 4 /* Lower layer went down */
#define MSG_SHUTDOWN 5 /* Object should disappear */
#ifndef SMALL_SYSTEM
#define MSG_QUEUE_LEN 8192 /* Internal messages queue length */
#define MSG_QUEUE_MASK 0x1FFF /* Mask for this length */
#else
#define MSG_QUEUE_LEN 512
#define MSG_QUEUE_MASK 0x1FF
#endif
/*
* GLOBAL VARIABLES
*/
extern int gQThresMin, gQThresMax, gQThresDiff;
/* Forward decl */
struct msghandler
{
void (*func)(int type, void *arg);
const char *dbg;
};
typedef struct msghandler MsgHandler;
/*
* FUNCTIONS
*/
#define MsgRegister(m, func) \
MsgRegister2(m, func, #func "()")
extern void MsgRegister2(MsgHandler *m, void (*func)(int typ, void *arg), const char *dbg);
extern void MsgUnRegister(MsgHandler *m);
extern void MsgSend(MsgHandler *m, int type, void *arg);
extern const char *MsgName(int msg);
#endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>