
This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
23 lines
564 B
C
23 lines
564 B
C
#ifndef DDEKIT_SRC_MSG_QUEUE_H
|
|
#define DDEKIT_SRC_MSG_QUEUE_H
|
|
|
|
#include <ddekit/ddekit.h>
|
|
#include <ddekit/thread.h>
|
|
#include <minix/ipc.h>
|
|
|
|
struct ddekit_minix_msg_q;
|
|
|
|
_PROTOTYPE( void ddekit_minix_queue_msg, (message *m));
|
|
|
|
_PROTOTYPE( void ddekit_minix_rcv,
|
|
(struct ddekit_minix_msg_q * mq, message *m));
|
|
|
|
_PROTOTYPE( struct ddekit_minix_msg_q *ddekit_minix_create_msg_q,
|
|
(unsigned from, unsigned to));
|
|
|
|
_PROTOTYPE( void ddekit_minix_destroy_msg_q,
|
|
(struct ddekit_minix_msg_q *mq));
|
|
|
|
|
|
#endif /* DDEKIT_SRC_MSG_QUEUE_H */
|