mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-07 22:42:47 +00:00
For read/write/lseek, use size_t and off_t types, as mandated by POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html Also, prototypes of unistd.h functions should not depend on CONFIG_POSIX_FS, as (many) of them deal with generic I/O, not with files in filesystem per se. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
43 lines
994 B
C
43 lines
994 B
C
/*
|
|
* Copyright (c) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef ZEPHYR_INCLUDE_POSIX_UNISTD_H_
|
|
#define ZEPHYR_INCLUDE_POSIX_UNISTD_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "sys/types.h"
|
|
#include "sys/stat.h"
|
|
|
|
#ifdef CONFIG_POSIX_API
|
|
#include <fs.h>
|
|
|
|
typedef unsigned int mode_t;
|
|
|
|
/* File related operations */
|
|
extern int open(const char *name, int flags);
|
|
extern int close(int file);
|
|
extern ssize_t write(int file, const void *buffer, size_t count);
|
|
extern ssize_t read(int file, void *buffer, size_t count);
|
|
extern off_t lseek(int file, off_t offset, int whence);
|
|
|
|
/* File System related operations */
|
|
extern int rename(const char *old, const char *newp);
|
|
extern int unlink(const char *path);
|
|
extern int stat(const char *path, struct stat *buf);
|
|
extern int mkdir(const char *path, mode_t mode);
|
|
#endif
|
|
|
|
unsigned sleep(unsigned int seconds);
|
|
int usleep(useconds_t useconds);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_INCLUDE_POSIX_UNISTD_H_ */
|