Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1392 from redstar/systemz
Browse files Browse the repository at this point in the history
Use new version identifier SystemZ instead of S390X.
  • Loading branch information
DmitryOlshansky committed Sep 21, 2015
2 parents 60ecf0c + 82c040a commit 6f931f1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion benchmark/gcbench/vdparser.extra/vdc/versions.d
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static @property int[string] sPredefinedVersions()
"SPARC_HardFloat" : -1,
"SPARC64" : -1,
"S390" : -1,
"S390X" : -1,
"SystemZ" : -1,
"HPPA" : -1,
"HPPA64" : -1,
"SH" : -1,
Expand Down
2 changes: 1 addition & 1 deletion src/core/sys/linux/sys/mman.d
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ else version (S390)
}
}
// http://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/s390/bits/mman.h
else version (S390X)
else version (SystemZ)
{
static if (__USE_MISC) enum
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/sys/posix/sys/mman.d
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ version( CRuntime_Glibc )
private enum DEFAULTS = true;
else version (S390)
private enum DEFAULTS = true;
else version (S390X)
else version (SystemZ)
private enum DEFAULTS = true;
else version (IA64)
private enum DEFAULTS = true;
Expand Down
2 changes: 1 addition & 1 deletion src/core/sys/posix/sys/types.d
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ version (CRuntime_Glibc)
enum __SIZEOF_PTHREAD_BARRIER_T = 20;
enum __SIZEOF_PTHREAD_BARRIERATTR_T = 4;
}
else version (S390X)
else version (SystemZ)
{
enum __SIZEOF_PTHREAD_ATTR_T = 56;
enum __SIZEOF_PTHREAD_MUTEX_T = 40;
Expand Down

0 comments on commit 6f931f1

Please sign in to comment.