1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Remove some pre-2.6.0 Linux kernel conditionals.

This commit is contained in:
Joseph Myers
2012-08-03 19:54:08 +00:00
parent 4f75b7a09a
commit 85fe199795
7 changed files with 24 additions and 61 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (C) 2000-2004,2006,2007 Free Software Foundation, Inc.
/* Copyright (C) 2000-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -86,11 +86,7 @@ where_is_shmfs (void)
while ((mp = __getmntent_r (fp, &resmem, buf, sizeof buf)) != NULL)
/* The original name is "shm" but this got changed in early Linux
2.4.x to "tmpfs". */
if (strcmp (mp->mnt_type, "tmpfs") == 0
#ifndef __ASSUME_TMPFS_NAME
|| strcmp (mp->mnt_type, "shm") == 0
#endif
)
if (strcmp (mp->mnt_type, "tmpfs") == 0)
{
/* Found it. There might be more than one place where the
filesystem is mounted but one is enough for us. */