-
Notifications
You must be signed in to change notification settings - Fork 7
stime(2)
Seonghun Lim edited this page May 8, 2019
·
1 revision
stime - 시간 설정하기
#include <time.h>
int stime(const time_t *t);
glibc 기능 확인 매크로 요건 (feature_test_macros(7) 참고):
-
stime()
: -
- glibc 2.19부터:
_DEFAULT_SOURCE
- glibc 2.19 및 이전:
_SVID_SOURCE
stime()
은 시스템의 시간 및 날짜 개념을 설정한다. t
가 가리키는 시간은 에포크 1970-01-01 00:00:00 +0000 (UTC) 이후의 초로 측정한다. 수퍼유저만 stime()
을 실행할 수 있다.
성공 시 0을 반환한다. 오류 시 -1을 반환하며 errno
를 적절히 설정한다.
EFAULT
- 사용자 공간의 정보를 얻어 오는 과정에 오류.
EPERM
- 호출 프로세스에게 충분한 특권이 없다. 리눅스에서는
CAP_SYS_TIME
특권이 필요하다.
SVr4.
date(1)
, settimeofday(2), capabilities(7)
2016-03-15