2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-25 15:07:05 +00:00
Files
openvswitch/include/windows/unistd.h
Alin Serdean cafc0664aa Add defines, enums and headers for MSVC
Add defines needed to compile netlink-socket.c and netlink.c.

Add a wrapper and the functionality behind it for syconf.

Add the newly created files to the noinst_HEADERS in windows/automake.mk

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
2014-07-29 09:28:31 -07:00

77 lines
1.9 KiB
C

/*
* Copyright (c) 2014 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _UNISTD_H
#define _UNISTD_H 1
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#define fsync _commit
/* Standard file descriptors. */
#define STDIN_FILENO 0 /* Standard input. */
#define STDOUT_FILENO 1 /* Standard output. */
#define STDERR_FILENO 2 /* Standard error output. */
#define _SC_UIO_MAXIOV 2
#define _XOPEN_IOV_MAX 16
#define _SC_PAGESIZE 0x1
#define _SC_NPROCESSORS_ONLN 0x2
#define _SC_PHYS_PAGES 0x4
__inline int GetNumLogicalProcessors(void)
{
SYSTEM_INFO info_temp;
GetSystemInfo(&info_temp);
long int n_cores = info_temp.dwNumberOfProcessors;
return n_cores;
}
__inline long sysconf(int type)
{
long value = -1;
long page_size = -1;
SYSTEM_INFO sys_info;
MEMORYSTATUSEX status;
switch (type) {
case _SC_NPROCESSORS_ONLN:
value = GetNumLogicalProcessors();
break;
case _SC_PAGESIZE:
GetSystemInfo(&sys_info);
value = sys_info.dwPageSize;
break;
case _SC_PHYS_PAGES:
status.dwLength = sizeof(status);
page_size = sysconf(_SC_PAGESIZE);
if (GlobalMemoryStatusEx(&status) && page_size != -1) {
value = status.ullTotalPhys / page_size;
}
break;
default:
break;
}
return value;
}
#endif /* unistd.h */