unistd.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. /* File System related operations */
  27. extern int rename(const char *old, const char *newp);
  28. extern int unlink(const char *path);
  29. extern int stat(const char *path, struct stat *buf);
  30. extern int mkdir(const char *path, mode_t mode);
  31. #ifdef CONFIG_NETWORKING
  32. static inline int gethostname(char *buf, size_t len)
  33. {
  34. return zsock_gethostname(buf, len);
  35. }
  36. #endif /* CONFIG_NETWORKING */
  37. #endif /* CONFIG_POSIX_API */
  38. unsigned sleep(unsigned int seconds);
  39. int usleep(useconds_t useconds);
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. #endif /* ZEPHYR_INCLUDE_POSIX_UNISTD_H_ */