public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]: problem: pc_keyb.h
@ 2001-08-31 19:23 Nico Schottelius
  2001-08-31 19:30 ` Martin Mares
  0 siblings, 1 reply; 5+ messages in thread
From: Nico Schottelius @ 2001-08-31 19:23 UTC (permalink / raw)
  To: mj, Linux Kernel Mailing List

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


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-09-05 13:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-08-31 19:23 [PATCH]: problem: pc_keyb.h Nico Schottelius
2001-08-31 19:30 ` Martin Mares
2001-09-02 21:06   ` Nico Schottelius
2001-09-05  8:40     ` Martin Mares
2001-09-05 13:47       ` Nico Schottelius

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox