2010-06-10 11:42:18 +02:00
|
|
|
/*
|
|
|
|
* posix specific declarations
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
|
|
* Copyright (c) 2010 Jes Sorensen <Jes.Sorensen@redhat.com>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_OS_POSIX_H
|
|
|
|
#define QEMU_OS_POSIX_H
|
|
|
|
|
2016-06-06 13:57:39 +02:00
|
|
|
#include <sys/mman.h>
|
2016-03-07 21:25:19 +01:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <sys/un.h>
|
2014-06-18 08:43:25 +02:00
|
|
|
|
build: include sys/sysmacros.h for major() and minor()
The definition of the major() and minor() macros are moving within glibc to
<sys/sysmacros.h>. Include this header when it is available to avoid the
following sorts of build-stopping messages:
qga/commands-posix.c: In function ‘dev_major_minor’:
qga/commands-posix.c:656:13: error: In the GNU C Library, "major" is defined
by <sys/sysmacros.h>. For historical compatibility, it is
currently defined by <sys/types.h> as well, but we plan to
remove this soon. To use "major", include <sys/sysmacros.h>
directly. If you did not intend to use a system-defined macro
"major", you should undefine it after including <sys/types.h>. [-Werror]
*devmajor = major(st.st_rdev);
^~~~~~~~~~~~~~~~~~~~~~~~~~
qga/commands-posix.c:657:13: error: In the GNU C Library, "minor" is defined
by <sys/sysmacros.h>. For historical compatibility, it is
currently defined by <sys/types.h> as well, but we plan to
remove this soon. To use "minor", include <sys/sysmacros.h>
directly. If you did not intend to use a system-defined macro
"minor", you should undefine it after including <sys/types.h>. [-Werror]
*devminor = minor(st.st_rdev);
^~~~~~~~~~~~~~~~~~~~~~~~~~
The additional include allows the build to complete on Fedora 26 (Rawhide)
with glibc version 2.24.90.
Signed-off-by: Christopher Covington <cov@codeaurora.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2016-12-28 21:04:33 +01:00
|
|
|
#ifdef CONFIG_SYSMACROS
|
|
|
|
#include <sys/sysmacros.h>
|
|
|
|
#endif
|
|
|
|
|
2021-04-16 15:55:41 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-06-10 11:42:30 +02:00
|
|
|
void os_set_line_buffering(void);
|
2010-06-10 11:42:31 +02:00
|
|
|
void os_set_proc_name(const char *s);
|
2010-06-10 11:42:22 +02:00
|
|
|
void os_setup_signal_handling(void);
|
2010-06-10 11:42:28 +02:00
|
|
|
void os_daemonize(void);
|
|
|
|
void os_setup_post(void);
|
2013-04-19 16:42:06 +02:00
|
|
|
int os_mlock(void);
|
2010-06-10 11:42:22 +02:00
|
|
|
|
2016-03-07 21:25:19 +01:00
|
|
|
#define closesocket(s) close(s)
|
|
|
|
#define ioctlsocket(s, r, v) ioctl(s, r, v)
|
|
|
|
|
2010-10-26 10:39:23 +02:00
|
|
|
typedef struct timeval qemu_timeval;
|
|
|
|
#define qemu_gettimeofday(tp) gettimeofday(tp, NULL)
|
|
|
|
|
2012-09-14 18:15:41 +02:00
|
|
|
bool is_daemonized(void);
|
|
|
|
|
2016-09-27 11:58:40 +02:00
|
|
|
/**
|
|
|
|
* qemu_alloc_stack:
|
|
|
|
* @sz: pointer to a size_t holding the requested usable stack size
|
|
|
|
*
|
|
|
|
* Allocate memory that can be used as a stack, for instance for
|
|
|
|
* coroutines. If the memory cannot be allocated, this function
|
|
|
|
* will abort (like g_malloc()). This function also inserts an
|
|
|
|
* additional guard page to catch a potential stack overflow.
|
|
|
|
* Note that the memory required for the guard page and alignment
|
|
|
|
* and minimal stack size restrictions will increase the value of sz.
|
|
|
|
*
|
|
|
|
* The allocated stack must be freed with qemu_free_stack().
|
|
|
|
*
|
|
|
|
* Returns: pointer to (the lowest address of) the stack memory.
|
|
|
|
*/
|
|
|
|
void *qemu_alloc_stack(size_t *sz);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_free_stack:
|
|
|
|
* @stack: stack to free
|
|
|
|
* @sz: size of stack in bytes
|
|
|
|
*
|
|
|
|
* Free a stack allocated via qemu_alloc_stack(). Note that sz must
|
|
|
|
* be exactly the adjusted stack size returned by qemu_alloc_stack.
|
|
|
|
*/
|
|
|
|
void qemu_free_stack(void *stack, size_t sz);
|
|
|
|
|
2016-09-23 00:17:10 +02:00
|
|
|
/* POSIX and Mingw32 differ in the name of the stdio lock functions. */
|
|
|
|
|
|
|
|
static inline void qemu_flockfile(FILE *f)
|
|
|
|
{
|
|
|
|
flockfile(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void qemu_funlockfile(FILE *f)
|
|
|
|
{
|
|
|
|
funlockfile(f);
|
|
|
|
}
|
|
|
|
|
2021-04-16 15:55:41 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-10 11:42:18 +02:00
|
|
|
#endif
|