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

Unified Diff: sysdeps/posix/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: Cosmetic change 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
« no previous file with comments | « sysdeps/nacl/sysdep.h ('k') | sysdeps/unix/sysv/linux/futimes.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/posix/libc_fatal.c
diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c
index c611b84363aaaee1be5536a38f327bd6265c3950..c60bf1c9ed7bbc3e9b4751efdb9f1b94f18e5e4d 100644
--- a/sysdeps/posix/libc_fatal.c
+++ b/sysdeps/posix/libc_fatal.c
@@ -35,11 +35,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;
};
@@ -67,7 +67,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;
@@ -99,7 +99,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;
« no previous file with comments | « sysdeps/nacl/sysdep.h ('k') | sysdeps/unix/sysv/linux/futimes.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698