summaryrefslogtreecommitdiff
path: root/fetch.h
diff options
context:
space:
mode:
authorVyacheslav Barinov <v.barinov@samsung.com>2014-08-19 10:32:35 +0400
committerVyacheslav Barinov <v.barinov@samsung.com>2014-08-19 12:00:10 +0400
commitd20fa3bbc49f7e9e8de18b89e7d7480bdb810cb0 (patch)
tree597394261d7acef7d60c9b3d4c63064e8b3e05de /fetch.h
parent9611ae3f65fe7e136e8b9d7929ab576584e212f5 (diff)
downloadltrace-d20fa3bbc49f7e9e8de18b89e7d7480bdb810cb0.tar.gz
ltrace-d20fa3bbc49f7e9e8de18b89e7d7480bdb810cb0.tar.bz2
ltrace-d20fa3bbc49f7e9e8de18b89e7d7480bdb810cb0.zip
Imported newest gitsandbox/vbarinov/tizen
Diffstat (limited to 'fetch.h')
-rw-r--r--fetch.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/fetch.h b/fetch.h
index 2a13214..3a1644a 100644
--- a/fetch.h
+++ b/fetch.h
@@ -38,24 +38,24 @@ struct fetch_context;
/* Initialize argument fetching. Returns NULL on failure. RET_INFO
* is the return type of the function. */
-struct fetch_context *fetch_arg_init(enum tof type, struct Process *proc,
+struct fetch_context *fetch_arg_init(enum tof type, struct process *proc,
struct arg_type_info *ret_info);
/* Make a clone of context. */
-struct fetch_context *fetch_arg_clone(struct Process *proc,
+struct fetch_context *fetch_arg_clone(struct process *proc,
struct fetch_context *context);
/* Load next argument. The function returns 0 on success or a
* negative value on failure. The extracted value is stored in
* *VALUEP. */
int fetch_arg_next(struct fetch_context *context, enum tof type,
- struct Process *proc,
+ struct process *proc,
struct arg_type_info *info, struct value *valuep);
/* Load return value. The function returns 0 on success or a negative
* value on failure. The extracted value is stored in *VALUEP. */
int fetch_retval(struct fetch_context *context, enum tof type,
- struct Process *proc,
+ struct process *proc,
struct arg_type_info *info, struct value *valuep);
/* Destroy fetch context. CONTEXT shall be the same memory location
@@ -74,15 +74,15 @@ void fetch_param_pack_end(struct fetch_context *context);
/* The following callbacks have to be implemented in backend if arch.h
* defines ARCH_HAVE_FETCH_ARG. These backend callbacks correspond to
* above functions. */
-struct fetch_context *arch_fetch_arg_init(enum tof type, struct Process *proc,
+struct fetch_context *arch_fetch_arg_init(enum tof type, struct process *proc,
struct arg_type_info *ret_info);
-struct fetch_context *arch_fetch_arg_clone(struct Process *proc,
+struct fetch_context *arch_fetch_arg_clone(struct process *proc,
struct fetch_context *context);
int arch_fetch_arg_next(struct fetch_context *ctx, enum tof type,
- struct Process *proc, struct arg_type_info *info,
+ struct process *proc, struct arg_type_info *info,
struct value *valuep);
int arch_fetch_retval(struct fetch_context *ctx, enum tof type,
- struct Process *proc, struct arg_type_info *info,
+ struct process *proc, struct arg_type_info *info,
struct value *valuep);
void arch_fetch_arg_done(struct fetch_context *context);