mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
1998-04-28 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/bits/sem.h: Don't define union semun. Define macro _SEM_SEMUN_UNDEFINED instead.
This commit is contained in:
parent
0088435eee
commit
df493c3bef
@ -1,3 +1,8 @@
|
|||||||
|
1998-04-28 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/bits/sem.h: Don't define union semun.
|
||||||
|
Define macro _SEM_SEMUN_UNDEFINED instead.
|
||||||
|
|
||||||
1998-04-28 16:32 Philip Blundell <philb@gnu.org>
|
1998-04-28 16:32 Philip Blundell <philb@gnu.org>
|
||||||
|
|
||||||
* manual/stdio.texi (Variable Arguments Output): Correct variable
|
* manual/stdio.texi (Variable Arguments Output): Correct variable
|
||||||
|
2
iconvdata/testdata/CP1257..UTF8
vendored
2
iconvdata/testdata/CP1257..UTF8
vendored
@ -5,7 +5,7 @@
|
|||||||
` a b c d e f g h i j k l m n o
|
` a b c d e f g h i j k l m n o
|
||||||
p q r s t u v w x y z { | } ~
|
p q r s t u v w x y z { | } ~
|
||||||
‚ „ … † ‡ ‰ ‹
|
‚ „ … † ‡ ‰ ‹
|
||||||
‘ ’ “ ” ∙ – — ™ ›
|
‘ ’ “ ” • – — ™ ›
|
||||||
¢ £ ¤ ¦ § Ø © Ŗ « ¬ ® Æ
|
¢ £ ¤ ¦ § Ø © Ŗ « ¬ ® Æ
|
||||||
° ± ² ³ µ ¶ · ø ¹ ŗ » ¼ ½ ¾ æ
|
° ± ² ³ µ ¶ · ø ¹ ŗ » ¼ ½ ¾ æ
|
||||||
Ą Į Ā Ć Ä Å Ę Ē Č É Ź Ė Ģ Ķ Ī Ļ
|
Ą Į Ā Ć Ä Å Ę Ē Č É Ź Ė Ģ Ķ Ī Ļ
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -48,15 +48,23 @@ struct semid_ds
|
|||||||
unsigned short int sem_nsems; /* number of semaphores in set */
|
unsigned short int sem_nsems; /* number of semaphores in set */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Union used for argument for `semctl'. */
|
|
||||||
|
/* The user should define a union like the following to use it for arguments
|
||||||
|
for `semctl'.
|
||||||
|
|
||||||
union semun
|
union semun
|
||||||
{
|
{
|
||||||
int val; /* value for SETVAL */
|
int val; <= value for SETVAL
|
||||||
struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */
|
struct semid_ds *buf; <= buffer for IPC_STAT & IPC_SET
|
||||||
unsigned short int *array; /* array for GETALL & SETALL */
|
unsigned short int *array; <= array for GETALL & SETALL
|
||||||
struct seminfo *__buf; /* buffer for IPC_INFO */
|
struct seminfo *__buf; <= buffer for IPC_INFO
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Previous versions of this file used to define this union but this is
|
||||||
|
incorrect. One can test the macro _SEM_SEMUN_UNDEFINED to see whether
|
||||||
|
one must define the unio or not. */
|
||||||
|
#define _SEM_SEMUN_UNDEFINED 1
|
||||||
|
|
||||||
#ifdef __USE_MISC
|
#ifdef __USE_MISC
|
||||||
|
|
||||||
/* ipcs ctl cmds */
|
/* ipcs ctl cmds */
|
||||||
|
Loading…
Reference in New Issue
Block a user