X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon%2Findex%2Findex.h;fp=src%2Fcommon%2Findex%2Findex.h;h=58f2ac70add96ac8eb5be5195bff1773683c8a2c;hb=8b833f70b3d3697e74c54f3a2f5efbe5292097ef;hp=0000000000000000000000000000000000000000;hpb=5aaa62a111f332a7c4412558bb9da9b30320eefd;p=lttng-tools.git diff --git a/src/common/index/index.h b/src/common/index/index.h new file mode 100644 index 000000000..58f2ac70a --- /dev/null +++ b/src/common/index/index.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2013 - Julien Desfossez + * David Goulet + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License, version 2 only, as + * published by the Free Software Foundation. + * + * 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. + */ + +#ifndef _INDEX_H +#define _INDEX_H + +#include + +#include "lttng-index.h" + +int index_create_file(char *path_name, char *stream_name, int uid, int gid, + uint64_t size, uint64_t count); +int index_write(int fd, struct lttng_packet_index *index, size_t len); + +#endif /* _INDEX_H */