Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1947)

Unified Diff: sysdeps/unix/sysv/linux/libc_fatal.c

Issue 7785030: Replace #define syscalls cancel machinery. (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: Another (hopefully working) fix for glibc-tests Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« sysdeps/nacl/sysdep.h ('K') | « sysdeps/unix/sysv/linux/futimes.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/unix/sysv/linux/libc_fatal.c
diff --git a/sysdeps/unix/sysv/linux/libc_fatal.c b/sysdeps/unix/sysv/linux/libc_fatal.c
index c7fac6ab514f144c32ace5a5e65d8ff0d814eab7..2aacc2d18291ba9348a9d28c899563c7cd67f5d6 100644
--- a/sysdeps/unix/sysv/linux/libc_fatal.c
+++ b/sysdeps/unix/sysv/linux/libc_fatal.c
@@ -36,11 +36,11 @@
#include FATAL_PREPARE_INCLUDE
#endif
-struct str_list
+struct __str_list
{
const char *str;
size_t len;
- struct str_list *next;
+ struct __str_list *next;
};
@@ -68,7 +68,7 @@ __libc_message (int do_abort, const char *fmt, ...)
if (fd == -1)
fd = STDERR_FILENO;
- struct str_list *list = NULL;
+ struct __str_list *list = NULL;
int nlist = 0;
const char *cp = fmt;
@@ -100,7 +100,7 @@ __libc_message (int do_abort, const char *fmt, ...)
cp = next;
}
- struct str_list *newp = alloca (sizeof (struct str_list));
+ struct __str_list *newp = alloca (sizeof (struct __str_list));
newp->str = str;
newp->len = len;
newp->next = list;
« sysdeps/nacl/sysdep.h ('K') | « sysdeps/unix/sysv/linux/futimes.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698