Skip to content

Commit

Permalink
[BZ #5465]
Browse files Browse the repository at this point in the history
2007-12-12  Ulrich Drepper  <drepper@redhat.com>
	[BZ #5465]
	* sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S [!SHARED]
	(__pthread_cond_timedwait): Don't use VDSO.
  • Loading branch information
Ulrich Drepper committed Dec 12, 2007
1 parent cbf5760 commit 189dce4
Show file tree
Hide file tree
Showing 11 changed files with 857 additions and 3 deletions.
8 changes: 5 additions & 3 deletions iconvdata/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ modules := ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 \
EBCDIC-FI-SE-A EBCDIC-FR EBCDIC-IS-FRISS EBCDIC-IT EBCDIC-PT \
EBCDIC-UK EBCDIC-US IBM037 IBM038 IBM274 IBM275 IBM423 \
IBM500 IBM870 IBM871 IBM891 IBM903 IBM904 IBM905 IBM1047 \
IBM874 CP737 CP775 ISO-2022-KR \
IBM874 CP737 CP775 ISO-2022-KR HP-TURKISH8 HP-THAI8 HP-GREEK8 \
KOI8-R LATIN-GREEK LATIN-GREEK-1 IBM256 IBM273 IBM277 IBM278 \
IBM280 IBM281 IBM284 IBM285 IBM290 IBM297 IBM420 IBM424 \
IBM437 IBM850 IBM851 IBM852 IBM855 IBM857 IBM860 IBM861 \
Expand Down Expand Up @@ -198,7 +198,8 @@ distribute := gconv-modules extra-module.mk gap.awk gaptab.awk gconv.map \
ibm12712.c ibm12712.h ibm16804.c ibm16804.h \
ibm1364.c ibm1364.h ibm1371.c ibm1371.h ibm1388.c ibm1388.h \
ibm1390.c ibm1390.h ibm1399.c ibm1399.h iso_11548-1.c mik.c \
brf.c mac-centraleurope.c hp-roman9.c
brf.c mac-centraleurope.c hp-roman9.c hp-turkish8.c \
hp-thai8.c hp-greek8.c

# We build the transformation modules only when we build shared libs.
ifeq (yes,$(build-shared))
Expand Down Expand Up @@ -241,7 +242,8 @@ gen-8bit-gap-modules := koi8-r latin-greek latin-greek-1 ibm256 ibm273 \
iso8859-11 ibm866nav pt154 rk1048 mik brf \
mac-centraleurope koi8-ru hp-roman8 hp-roman9 \
ebcdic-es ebcdic-es-a ebcdic-is-friss ebcdic-uk \
iso8859-16 viscii iso8859-9e
iso8859-16 viscii iso8859-9e hp-turkish8 \
hp-thai8 hp-greek8

gen-special-modules := iso8859-7jp

Expand Down
19 changes: 19 additions & 0 deletions iconvdata/gconv-modules
Original file line number Diff line number Diff line change
Expand Up @@ -1934,3 +1934,22 @@ alias R9// HP-ROMAN9//
alias HPROMAN9// HP-ROMAN9//
module HP-ROMAN9// INTERNAL HP-ROMAN9 1
module INTERNAL HP-ROMAN9// HP-ROMAN9 1

# from to module cost
alias TURKISH8// HP-TURKISH8//
alias HPTURKISH8// HP-TURKISH8//
alias OSF10010006// HP-TURKISH8//
module HP-TURKISH8// INTERNAL HP-TURKISH8 1
module INTERNAL HP-TURKISH8// HP-TURKISH8 1

# from to module cost
alias THAI8// HP-THAI8//
alias HPTHAI8// HP-THAI8//
module HP-THAI8// INTERNAL HP-THAI8 1
module INTERNAL HP-THAI8// HP-THAI8 1

# from to module cost
alias HPGREEK8// HP-GREEK8//
alias OSF10010004// HP-GREEK8//
module HP-GREEK8// INTERNAL HP-GREEK8 1
module INTERNAL HP-GREEK8// HP-GREEK8 1
29 changes: 29 additions & 0 deletions iconvdata/hp-greek8.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/* Conversion from and to HP-GREEK8.
Copyright (C) 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2007.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#include <stdint.h>

/* Specify the conversion table. */
#define TABLES <hp-greek8.h>

#define CHARSET_NAME "HP-GREEK8//"
#define HAS_HOLES 1 /* Not all 256 character are defined. */

#include <8bit-gap.c>
29 changes: 29 additions & 0 deletions iconvdata/hp-thai8.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/* Conversion from and to HP-THAI8.
Copyright (C) 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2007.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#include <stdint.h>

/* Specify the conversion table. */
#define TABLES <hp-thai8.h>

#define CHARSET_NAME "HP-THAI8//"
#define HAS_HOLES 1 /* Not all 256 character are defined. */

#include <8bit-gap.c>
29 changes: 29 additions & 0 deletions iconvdata/hp-turkish8.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/* Conversion from and to HP-TURKISH8.
Copyright (C) 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2007.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#include <stdint.h>

/* Specify the conversion table. */
#define TABLES <hp-turkish8.h>

#define CHARSET_NAME "HP-TURKISH8//"
#define HAS_HOLES 1 /* Not all 256 character are defined. */

#include <8bit-gap.c>
3 changes: 3 additions & 0 deletions iconvdata/tst-tables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ cat <<EOF |
LATIN-GREEK-1
HP-ROMAN8
HP-ROMAN9
HP-TURKISH8
HP-THAI8
HP-GREEK8
EBCDIC-AT-DE
EBCDIC-AT-DE-A
EBCDIC-CA-FR
Expand Down
226 changes: 226 additions & 0 deletions localedata/charmaps/HP-GREEK8
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
<code_set_name> HP-GREEK8
<comment_char> %
<escape_char> /

CHARMAP
<U0000> /x00 NULL (NUL)
<U0001> /x01 START OF HEADING (SOH)
<U0002> /x02 START OF TEXT (STX)
<U0003> /x03 END OF TEXT (ETX)
<U0004> /x04 END OF TRANSMISSION (EOT)
<U0005> /x05 ENQUIRY (ENQ)
<U0006> /x06 ACKNOWLEDGE (ACK)
<U0007> /x07 BELL (BEL)
<U0008> /x08 BACKSPACE (BS)
<U0009> /x09 CHARACTER TABULATION (HT)
<U000A> /x0a LINE FEED (LF)
<U000B> /x0b LINE TABULATION (VT)
<U000C> /x0c FORM FEED (FF)
<U000D> /x0d CARRIAGE RETURN (CR)
<U000E> /x0e SHIFT OUT (SO)
<U000F> /x0f SHIFT IN (SI)
<U0010> /x10 DATALINK ESCAPE (DLE)
<U0011> /x11 DEVICE CONTROL ONE (DC1)
<U0012> /x12 DEVICE CONTROL TWO (DC2)
<U0013> /x13 DEVICE CONTROL THREE (DC3)
<U0014> /x14 DEVICE CONTROL FOUR (DC4)
<U0015> /x15 NEGATIVE ACKNOWLEDGE (NAK)
<U0016> /x16 SYNCHRONOUS IDLE (SYN)
<U0017> /x17 END OF TRANSMISSION BLOCK (ETB)
<U0018> /x18 CANCEL (CAN)
<U0019> /x19 END OF MEDIUM (EM)
<U001A> /x1a SUBSTITUTE (SUB)
<U001B> /x1b ESCAPE (ESC)
<U001C> /x1c FILE SEPARATOR (IS4)
<U001D> /x1d GROUP SEPARATOR (IS3)
<U001E> /x1e RECORD SEPARATOR (IS2)
<U001F> /x1f UNIT SEPARATOR (IS1)
<U0020> /x20 SPACE
<U0021> /x21 EXCLAMATION MARK
<U0022> /x22 QUOTATION MARK
<U0023> /x23 NUMBER SIGN
<U0024> /x24 DOLLAR SIGN
<U0025> /x25 PERCENT SIGN
<U0026> /x26 AMPERSAND
<U0027> /x27 APOSTROPHE
<U0028> /x28 LEFT PARENTHESIS
<U0029> /x29 RIGHT PARENTHESIS
<U002A> /x2a ASTERISK
<U002B> /x2b PLUS SIGN
<U002C> /x2c COMMA
<U002D> /x2d HYPHEN-MINUS
<U002E> /x2e FULL STOP
<U002F> /x2f SOLIDUS
<U0030> /x30 DIGIT ZERO
<U0031> /x31 DIGIT ONE
<U0032> /x32 DIGIT TWO
<U0033> /x33 DIGIT THREE
<U0034> /x34 DIGIT FOUR
<U0035> /x35 DIGIT FIVE
<U0036> /x36 DIGIT SIX
<U0037> /x37 DIGIT SEVEN
<U0038> /x38 DIGIT EIGHT
<U0039> /x39 DIGIT NINE
<U003A> /x3a COLON
<U003B> /x3b SEMICOLON
<U003C> /x3c LESS-THAN SIGN
<U003D> /x3d EQUALS SIGN
<U003E> /x3e GREATER-THAN SIGN
<U003F> /x3f QUESTION MARK
<U0040> /x40 COMMERCIAL AT
<U0041> /x41 LATIN CAPITAL LETTER A
<U0042> /x42 LATIN CAPITAL LETTER B
<U0043> /x43 LATIN CAPITAL LETTER C
<U0044> /x44 LATIN CAPITAL LETTER D
<U0045> /x45 LATIN CAPITAL LETTER E
<U0046> /x46 LATIN CAPITAL LETTER F
<U0047> /x47 LATIN CAPITAL LETTER G
<U0048> /x48 LATIN CAPITAL LETTER H
<U0049> /x49 LATIN CAPITAL LETTER I
<U004A> /x4a LATIN CAPITAL LETTER J
<U004B> /x4b LATIN CAPITAL LETTER K
<U004C> /x4c LATIN CAPITAL LETTER L
<U004D> /x4d LATIN CAPITAL LETTER M
<U004E> /x4e LATIN CAPITAL LETTER N
<U004F> /x4f LATIN CAPITAL LETTER O
<U0050> /x50 LATIN CAPITAL LETTER P
<U0051> /x51 LATIN CAPITAL LETTER Q
<U0052> /x52 LATIN CAPITAL LETTER R
<U0053> /x53 LATIN CAPITAL LETTER S
<U0054> /x54 LATIN CAPITAL LETTER T
<U0055> /x55 LATIN CAPITAL LETTER U
<U0056> /x56 LATIN CAPITAL LETTER V
<U0057> /x57 LATIN CAPITAL LETTER W
<U0058> /x58 LATIN CAPITAL LETTER X
<U0059> /x59 LATIN CAPITAL LETTER Y
<U005A> /x5a LATIN CAPITAL LETTER Z
<U005B> /x5b LEFT SQUARE BRACKET
<U005C> /x5c REVERSE SOLIDUS
<U005D> /x5d RIGHT SQUARE BRACKET
<U005E> /x5e CIRCUMFLEX ACCENT
<U005F> /x5f LOW LINE
<U0060> /x60 GRAVE ACCENT
<U0061> /x61 LATIN SMALL LETTER A
<U0062> /x62 LATIN SMALL LETTER B
<U0063> /x63 LATIN SMALL LETTER C
<U0064> /x64 LATIN SMALL LETTER D
<U0065> /x65 LATIN SMALL LETTER E
<U0066> /x66 LATIN SMALL LETTER F
<U0067> /x67 LATIN SMALL LETTER G
<U0068> /x68 LATIN SMALL LETTER H
<U0069> /x69 LATIN SMALL LETTER I
<U006A> /x6a LATIN SMALL LETTER J
<U006B> /x6b LATIN SMALL LETTER K
<U006C> /x6c LATIN SMALL LETTER L
<U006D> /x6d LATIN SMALL LETTER M
<U006E> /x6e LATIN SMALL LETTER N
<U006F> /x6f LATIN SMALL LETTER O
<U0070> /x70 LATIN SMALL LETTER P
<U0071> /x71 LATIN SMALL LETTER Q
<U0072> /x72 LATIN SMALL LETTER R
<U0073> /x73 LATIN SMALL LETTER S
<U0074> /x74 LATIN SMALL LETTER T
<U0075> /x75 LATIN SMALL LETTER U
<U0076> /x76 LATIN SMALL LETTER V
<U0077> /x77 LATIN SMALL LETTER W
<U0078> /x78 LATIN SMALL LETTER X
<U0079> /x79 LATIN SMALL LETTER Y
<U007A> /x7a LATIN SMALL LETTER Z
<U007B> /x7b LEFT CURLY BRACKET
<U007C> /x7c VERTICAL LINE
<U007D> /x7d RIGHT CURLY BRACKET
<U007E> /x7e TILDE
<U007F> /x7f DELETE (DEL)
<U0080> /x80 PADDING CHARACTER (PAD)
<U0081> /x81 HIGH OCTET PRESET (HOP)
<U0082> /x82 BREAK PERMITTED HERE (BPH)
<U0083> /x83 NO BREAK HERE (NBH)
<U0084> /x84 INDEX (IND)
<U0085> /x85 NEXT LINE (NEL)
<U0086> /x86 START OF SELECTED AREA (SSA)
<U0087> /x87 END OF SELECTED AREA (ESA)
<U0088> /x88 CHARACTER TABULATION SET (HTS)
<U0089> /x89 CHARACTER TABULATION WITH JUSTIFICATION (HTJ)
<U008A> /x8a LINE TABULATION SET (VTS)
<U008B> /x8b PARTIAL LINE FORWARD (PLD)
<U008C> /x8c PARTIAL LINE BACKWARD (PLU)
<U008D> /x8d REVERSE LINE FEED (RI)
<U008E> /x8e SINGLE-SHIFT TWO (SS2)
<U008F> /x8f SINGLE-SHIFT THREE (SS3)
<U0090> /x90 DEVICE CONTROL STRING (DCS)
<U0091> /x91 PRIVATE USE ONE (PU1)
<U0092> /x92 PRIVATE USE TWO (PU2)
<U0093> /x93 SET TRANSMIT STATE (STS)
<U0094> /x94 CANCEL CHARACTER (CCH)
<U0095> /x95 MESSAGE WAITING (MW)
<U0096> /x96 START OF GUARDED AREA (SPA)
<U0097> /x97 END OF GUARDED AREA (EPA)
<U0098> /x98 START OF STRING (SOS)
<U0099> /x99 SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI)
<U009A> /x9a SINGLE CHARACTER INTRODUCER (SCI)
<U009B> /x9b CONTROL SEQUENCE INTRODUCER (CSI)
<U009C> /x9c STRING TERMINATOR (ST)
<U009D> /x9d OPERATING SYSTEM COMMAND (OSC)
<U009E> /x9e PRIVACY MESSAGE (PM)
<U009F> /x9f APPLICATION PROGRAM COMMAND (APC)
<U00A0> /xa0 NO-BREAK SPACE
<U03CA> /xbc GREEK SMALL LETTER IOTA WITH DIALYTIKA
<U03CB> /xbe GREEK SMALL LETTER UPSILON WITH DIALYTIKA
<U0391> /xc1 GREEK CAPITAL LETTER ALPHA
<U0392> /xc2 GREEK CAPITAL LETTER BETA
<U0393> /xc3 GREEK CAPITAL LETTER GAMMA
<U0394> /xc4 GREEK CAPITAL LETTER DELTA
<U0395> /xc5 GREEK CAPITAL LETTER EPSILON
<U0396> /xc6 GREEK CAPITAL LETTER ZETA
<U0397> /xc7 GREEK CAPITAL LETTER ETA
<U0398> /xc8 GREEK CAPITAL LETTER THETA
<U0399> /xc9 GREEK CAPITAL LETTER IOTA
<U039A> /xcb GREEK CAPITAL LETTER KAPPA
<U039B> /xcc GREEK CAPITAL LETTER LAMDA
<U039C> /xcd GREEK CAPITAL LETTER MU
<U039D> /xce GREEK CAPITAL LETTER NU
<U039E> /xcf GREEK CAPITAL LETTER XI
<U039F> /xd0 GREEK CAPITAL LETTER OMICRON
<U03A0> /xd1 GREEK CAPITAL LETTER PI
<U03A1> /xd2 GREEK CAPITAL LETTER RHO
<U03A3> /xd3 GREEK CAPITAL LETTER SIGMA
<U03A4> /xd4 GREEK CAPITAL LETTER TAU
<U03A5> /xd5 GREEK CAPITAL LETTER UPSILON
<U03A6> /xd6 GREEK CAPITAL LETTER PHI
<U03A7> /xd8 GREEK CAPITAL LETTER CHI
<U03A8> /xd9 GREEK CAPITAL LETTER PSI
<U03A9> /xda GREEK CAPITAL LETTER OMEGA
<U03AC> /xdb GREEK SMALL LETTER ALPHA WITH TONOS
<U03AE> /xdc GREEK SMALL LETTER ETA WITH TONOS
<U03CC> /xdd GREEK SMALL LETTER OMICRON WITH TONOS
<U03CD> /xe0 GREEK SMALL LETTER UPSILON WITH TONOS
<U03B1> /xe1 GREEK SMALL LETTER ALPHA
<U03B2> /xe2 GREEK SMALL LETTER BETA
<U03B3> /xe3 GREEK SMALL LETTER GAMMA
<U03B4> /xe4 GREEK SMALL LETTER DELTA
<U03B5> /xe5 GREEK SMALL LETTER EPSILON
<U03B6> /xe6 GREEK SMALL LETTER ZETA
<U03B7> /xe7 GREEK SMALL LETTER ETA
<U03B8> /xe8 GREEK SMALL LETTER THETA
<U03B9> /xe9 GREEK SMALL LETTER IOTA
<U03BA> /xeb GREEK SMALL LETTER KAPPA
<U03BB> /xec GREEK SMALL LETTER LAMDA
<U03BC> /xed GREEK SMALL LETTER MU
<U03BD> /xee GREEK SMALL LETTER NU
<U03BE> /xef GREEK SMALL LETTER XI
<U03BF> /xf0 GREEK SMALL LETTER OMICRON
<U03C0> /xf1 GREEK SMALL LETTER PI
<U03C1> /xf2 GREEK SMALL LETTER RHO
<U03C3> /xf3 GREEK SMALL LETTER SIGMA
<U03C4> /xf4 GREEK SMALL LETTER TAU
<U03C5> /xf5 GREEK SMALL LETTER UPSILON
<U03C6> /xf6 GREEK SMALL LETTER PHI
<U03C2> /xf7 GREEK SMALL LETTER FINAL SIGMA
<U03C7> /xf8 GREEK SMALL LETTER CHI
<U03C8> /xf9 GREEK SMALL LETTER PSI
<U03C9> /xfa GREEK SMALL LETTER OMEGA
<U03AD> /xfb GREEK SMALL LETTER EPSILON WITH TONOS
<U03AF> /xfc GREEK SMALL LETTER IOTA WITH TONOS
<U03CE> /xfd GREEK SMALL LETTER OMEGA WITH TONOS
<U03F3> /xfe GREEK LETTER YOT
END CHARMAP
Loading

0 comments on commit 189dce4

Please sign in to comment.