summaryrefslogtreecommitdiffstats
path: root/src/fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fifo.c')
-rw-r--r--src/fifo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fifo.c b/src/fifo.c
index c586fa1..cb6b899 100644
--- a/src/fifo.c
+++ b/src/fifo.c
@@ -181,7 +181,7 @@ int lt_fifo_recv(struct lt_config_shared *cfg, struct lt_thread *t, void *buf,
int lt_fifo_msym_get(struct lt_config_shared *cfg, char *buf, int type,
struct timeval *tv, char *symname, char *libto,
- char *arg, char *argd)
+ char *arg, char *argd, long info)
{
struct lt_fifo_msym *m = (struct lt_fifo_msym*) buf;
int len_data, len = sizeof(struct lt_fifo_msym);
@@ -191,6 +191,8 @@ int lt_fifo_msym_get(struct lt_config_shared *cfg, char *buf, int type,
m->h.tid = (pid_t) syscall(SYS_gettid);
m->h.tv = *tv;
+ m->info = info;
+
m->sym = 0;
m->lib = strlen(symname);
m->arg = m->lib + strlen(libto) + 1;