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

Unified Diff: tools/srpcgen.py

Issue 5622003: Restructure the structs/unions involved in SRPC argument passing. This will... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' 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 | « tests/unittests/shared/srpc/types_srpc_test.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/srpcgen.py
===================================================================
--- tools/srpcgen.py (revision 3898)
+++ tools/srpcgen.py (working copy)
@@ -86,15 +86,15 @@
"""
types = {'bool': ['b', 'bool', 'u.bval', ''],
- 'char[]': ['C', 'char*', 'u.caval.carr', 'u.caval.count'],
+ 'char[]': ['C', 'char*', 'arrays.carr', 'u.count'],
'double': ['d', 'double', 'u.dval', ''],
- 'double[]': ['D', 'double*', 'u.daval.darr', 'u.daval.count'],
+ 'double[]': ['D', 'double*', 'arrays.darr', 'u.count'],
'handle': ['h', 'NaClSrpcImcDescType', 'u.hval', ''],
'int32_t': ['i', 'int32_t', 'u.ival', ''],
- 'int32_t[]': ['I', 'int32_t*', 'u.iaval.iarr', 'u.iaval.count'],
+ 'int32_t[]': ['I', 'int32_t*', 'arrays.iarr', 'u.count'],
'int64_t': ['l', 'int64_t', 'u.lval', ''],
- 'int64_t[]': ['L', 'int64_t', 'u.laval.larr', 'u.laval.count'],
- 'string': ['s', 'char*', 'u.sval.str', ''],
+ 'int64_t[]': ['L', 'int64_t', 'arrays.larr', 'u.count'],
+ 'string': ['s', 'char*', 'arrays.str', ''],
}
« no previous file with comments | « tests/unittests/shared/srpc/types_srpc_test.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698