genode/dde_rump/src/server/rump_fs/file_system.h

39 lines
756 B
C++

/**
* \brief Rump initialization and required header
* \author Sebastian Sumpf
* \date 2014-01-17
*/
/*
* Copyright (C) 2014 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _FILE_SYSTEM_H_
#define _FILE_SYSTEM_H_
extern "C" {
#include <sys/cdefs.h>
#include <sys/errno.h>
#include <fcntl.h>
#include <sys/dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/param.h>
#include <rump/rump.h>
#include <rump/rump_syscalls.h>
}
#include <base/signal.h>
#include <os/server.h>
namespace File_system {
void init(Server::Entrypoint &ep);
bool supports_symlinks();
}
extern int errno;
#endif /* _FILE_SYSTEM_H_ */