소스 검색

fix another ppoll issue (missing sigset_t size argument)

Rich Felker 12 년 전
부모
커밋
a9555a995c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/linux/ppoll.c

+ 1 - 1
src/linux/ppoll.c

@@ -5,5 +5,5 @@
 int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask)
 {
 	return syscall_cp(SYS_ppoll, fds, n,
-		to ? (struct timespec []){*to} : 0, mask);
+		to ? (struct timespec []){*to} : 0, mask, __SYSCALL_SSLEN);
 }