unistd.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. #include "posix_types.h"
  9. #include "sys/stat.h"
  10. #ifdef CONFIG_NETWORKING
  11. /* For zsock_gethostname() */
  12. #include "net/socket.h"
  13. #endif
  14. #ifdef CONFIG_POSIX_API
  15. #include <fs/fs.h>
  16. #endif
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #ifdef CONFIG_POSIX_API
  21. /* File related operations */
  22. extern int close(int file);
  23. extern ssize_t write(int file, const void *buffer, size_t count);
  24. extern ssize_t read(int file, void *buffer, size_t count);
  25. extern off_t lseek(int file, off_t offset, int whence);
  26. extern int fsync(int file);
  27. /* File System related operations */
  28. extern int rename(const char *old, const char *newp);
  29. extern int unlink(const char *path);
  30. extern int stat(const char *path, struct stat *buf);
  31. extern int mkdir(const char *path, mode_t mode);
  32. #ifdef CONFIG_NETWORKING
  33. static inline int gethostname(char *buf, size_t len)
  34. {
  35. return zsock_gethostname(buf, len);
  36. }
  37. #endif /* CONFIG_NETWORKING */
  38. #endif /* CONFIG_POSIX_API */
  39. unsigned sleep(unsigned int seconds);
  40. int usleep(useconds_t useconds);
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* ZEPHYR_INCLUDE_POSIX_UNISTD_H_ */