diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-09-02 15:04:19 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-09-02 15:04:19 +0200 |
commit | 10d74eef2851e032ee92c62907a7e8e6db230369 (patch) | |
tree | 5391bc92f4c3e614dbe1a1dfe908dbe6d3cccb13 /src/ipcpd/normal/main.c | |
parent | ee2235c62cf0c51f7188fdeb6ac283c1e2ea0335 (diff) | |
parent | 4f44c91c68a3706e04334066f28471d56cc71849 (diff) | |
download | ouroboros-10d74eef2851e032ee92c62907a7e8e6db230369.tar.gz ouroboros-10d74eef2851e032ee92c62907a7e8e6db230369.zip |
Merged in dstaesse/ouroboros/be-split-fp (pull request #238)
lib: Add northbound ringbuffers
Diffstat (limited to 'src/ipcpd/normal/main.c')
-rw-r--r-- | src/ipcpd/normal/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/normal/main.c b/src/ipcpd/normal/main.c index cf4ae3f1..082973f4 100644 --- a/src/ipcpd/normal/main.c +++ b/src/ipcpd/normal/main.c @@ -212,7 +212,7 @@ struct normal_ipcp_data * normal_ipcp_data_create() return NULL; } - normal_data->rb = shm_ap_rbuff_open(getpid()); + normal_data->rb = shm_ap_rbuff_create_n(); if (normal_data->rb == NULL) { shm_rdrbuff_close(normal_data->rdrb); free(normal_data); |