Hello Martin!
Why can't I include pc_keyb.h directtly into a C program ?
I need that for a part of GPM.
nico@flapp:~/computer/programming/c/test > gcc pc_keyb.h.c
In file included from pc_keyb.h.c:3:
/usr/include/linux/pc_keyb.h:127: parse error before `wait_queue_head_t'
/usr/include/linux/pc_keyb.h:127: warning: no semicolon at end of struct
or union
/usr/include/linux/pc_keyb.h:130: parse error before `}'
When adding
#define wait_queue_head_t struct wait_queue *
(stolen from compatmac.h)
before including pc_keyb.h it runs fine.
So I suggest the following:
================================================
flapp:/usr/include/linux # diff -u compatmac.h.orig compatmac.h
-- compatmac.h.orig Fri Aug 31 13:14:38 2001
+++ compatmac.h Fri Aug 31 13:14:50 2001
@@ -151,7 +151,6 @@
#ifndef TWO_THREE
/* These are new in 2.3. The source now uses 2.3 syntax, and
here is
the compatibility define... */
-#define wait_queue_head_t struct wait_queue
*
#define DECLARE_MUTEX(name) struct semaphore name
= MUTEX
#define DECLARE_WAITQUEUE(wait, current) \
struct wait_queue wait = { current, NULL }
================================================
and
================================================
flapp:/usr/include/linux # diff -u pc_keyb.h.orig pc_keyb.h
--- pc_keyb.h.orig Fri Aug 31 13:15:31 2001
+++ pc_keyb.h Fri Aug 31 13:15:40 2001
@@ -121,6 +121,8 @@
but then the read function
would need
a lock etc - ick */
+#define wait_queue_head_t struct wait_queue *
+
struct aux_queue {
unsigned long head;
unsigned long tail;
==================================================
Nico
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Fri Aug 31 2001 - 21:00:35 EST