Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
unistd.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6#ifndef ZEPHYR_INCLUDE_POSIX_UNISTD_H_
7#define ZEPHYR_INCLUDE_POSIX_UNISTD_H_
8
9#include "posix_types.h"
11#ifdef CONFIG_NETWORKING
12/* For zsock_gethostname() */
13#include <zephyr/net/socket.h>
14#endif
15
16#ifdef CONFIG_POSIX_API
17#include <zephyr/fs/fs.h>
18#endif
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#ifdef CONFIG_POSIX_API
25/* File related operations */
26extern int close(int file);
27extern ssize_t write(int file, const void *buffer, size_t count);
28extern ssize_t read(int file, void *buffer, size_t count);
29extern off_t lseek(int file, off_t offset, int whence);
30
31/* File System related operations */
32extern int rename(const char *old, const char *newp);
33extern int unlink(const char *path);
34extern int stat(const char *path, struct stat *buf);
35extern int mkdir(const char *path, mode_t mode);
36
37FUNC_NORETURN void _exit(int status);
38
39#ifdef CONFIG_NETWORKING
40static inline int gethostname(char *buf, size_t len)
41{
42 return zsock_gethostname(buf, len);
43}
44#endif /* CONFIG_NETWORKING */
45
46#endif /* CONFIG_POSIX_API */
47
48#ifdef CONFIG_GETOPT
49int getopt(int argc, char *const argv[], const char *optstring);
50extern char *optarg;
51extern int opterr, optind, optopt;
52#endif
53
54unsigned sleep(unsigned int seconds);
55int usleep(useconds_t useconds);
56
57#ifdef __cplusplus
58}
59#endif
60
61#endif /* ZEPHYR_INCLUDE_POSIX_UNISTD_H_ */
static int gethostname(char *buf, size_t len)
POSIX wrapper for zsock_gethostname.
Definition: socket.h:931
static int close(int sock)
POSIX wrapper for zsock_close.
Definition: socket.h:766
int zsock_gethostname(char *buf, size_t len)
Get local host name.
int mkdir(const char *_path, mode_t __mode)
__SIZE_TYPE__ ssize_t
Definition: types.h:28
__INTPTR_TYPE__ off_t
Definition: types.h:36
unsigned int mode_t
Definition: types.h:14
BSD Sockets compatible API definitions.
unsigned long useconds_t
Definition: posix_types.h:25
Definition: stat.h:92
int usleep(useconds_t useconds)
unsigned sleep(unsigned int seconds)