|
ContainerTracer
0.1
|
This has the contents of creating and using Message Queue. More...
#include <assert.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <sys/types.h>#include <sys/ipc.h>#include <sys/msg.h>#include <fcntl.h>#include <trace_replay.h>#include <log.h>#include <driver/docker-driver.h>
Functions | |
| static int | __docker_mq_init (struct docker_info *info) |
| Initialize the Message Queue. More... | |
| int | docker_mq_init (struct docker_info *info) |
Wrapping function of __docker_mq_init() More... | |
| int | docker_mq_get (const struct docker_info *info, void *buffer) |
| Retrieve the data from Message Queue. More... | |
| void | docker_mq_free (struct docker_info *info, int flags) |
| Deallocate the Message Queue resources. More... | |
This has the contents of creating and using Message Queue.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
static |
Initialize the Message Queue.
| [in] | info | docker_info structure which wants to init. |
| void docker_mq_free | ( | struct docker_info * | info, |
| int | flags | ||
| ) |
Deallocate the Message Queue resources.
| [in] | info | docker_info structure which wants to deallocate. |
| [in] | flags | Set a range of deallocation. |
| int docker_mq_get | ( | const struct docker_info * | info, |
| void * | buffer | ||
| ) |
Retrieve the data from Message Queue.
| [in] | info | docker_info structure which wants to get data. |
| [out] | buffer | Destination of data will be stored |
| int docker_mq_init | ( | struct docker_info * | info | ) |
Wrapping function of __docker_mq_init()
| [in] | info | docker_info structure which wants to init. |

1.8.13