lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [day] [month] [year] [list]
Date:	Wed, 18 Apr 2007 18:50:45 -0600
From:	Robert Hancock <hancockr@...w.ca>
To:	liangbowen <liangbowen@...il.com>,
	linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: problem with <asm/semaphore.h>

liangbowen wrote:
> Hi
> 
> I compiled the following code with gcc under FC2 :
> 
> #include <asm/semaphore.h>
> main()
> {
>     struct semaphore sum;
> 
> }
> 
> It doesn't compile, saying "storage size of `sem'
> isn't known".
> 
> and I looked inside asm/semaphore.h, I saw:
> #ifndef I386_SEMAPHORE_H
> #define I386_SEMAPHORE_H
> 
> #include <linux/linkage.h>
> 
> #endif
> 
> Did I missed something? Please guide me how to fix it.
> 
> Sincerely

You're trying to use a kernel data structure in a user-space program. 
Don't. The definitions in that header are inside #ifdef __KERNEL__ and 
so the provided userspace headers remove that part.

-- 
Robert Hancock      Saskatoon, SK, Canada
To email, remove "nospam" from hancockr@...pamshaw.ca
Home Page: http://www.roberthancock.com/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ