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

Unified Diff: sysdeps/nacl/nacl_stat.h

Issue 6026005: Fix __fxstat which is called from fstat. Remove obsolete fstat64. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-glibc.git@master
Patch Set: Fix __fxstat, unificating struct stat and struct stat64. Created 10 years 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/fxstat64.c ('k') | sysdeps/nacl/xstat.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/nacl/nacl_stat.h
diff --git a/sysdeps/nacl/nacl_stat.h b/sysdeps/nacl/nacl_stat.h
index 3da2ef2859314764781349a0d00901337f8f1cb8..7a22a78e710170296efe221eb2e96496759690d9 100644
--- a/sysdeps/nacl/nacl_stat.h
+++ b/sysdeps/nacl/nacl_stat.h
@@ -95,8 +95,10 @@ struct nacl_abi_stat { /* must be renamed when ABI is exported */
nacl_abi_time_t nacl_abi_st_ctime; /* inode change time */
};
-/* Converts struct nacl_abi_stat to struct stat64. Implemented in fxstat64.c */
+/* Converts struct nacl_abi_stat to struct stat64. Implemented in fxstat.c */
void __nacl_abi_stat_to_stat64 (struct nacl_abi_stat *nacl_st,
struct stat64 *st);
-
+/* Converts struct nacl_abi_stat to struct stat. Implemented in fxstat.c */
+void __nacl_abi_stat_to_stat (struct nacl_abi_stat *nacl_st,
pasko-google - do not use 2010/12/24 10:23:06 so now you have stat == stat64? so this copying of
+ struct stat *st);
#endif
« no previous file with comments | « sysdeps/nacl/fxstat64.c ('k') | sysdeps/nacl/xstat.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698