이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
Immanuel
/
btpd
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
There's no need to fsync here, so remove the call. This should improve
write performance.
master
Richard Nyberg
18 년 전
부모
110b1d7e22
커밋
f20c481b11
1개의 변경된 파일
과
0개의 추가작업
그리고
5개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-5
misc/stream.c
+ 0
- 5
misc/stream.c
파일 보기
@@ -146,11 +146,6 @@ bts_put(struct bt_stream *bts, off_t off, const uint8_t *buf, size_t len)
bts->f_off += didwrite;
bts->t_off += didwrite;
if (bts->f_off == bts->files[bts->index].length) {
if (fsync(bts->fd) == -1) {
int err = errno;
close(bts->fd);
return err;
}
if (close(bts->fd) == -1)
return errno;
bts->fd = -1;
쓰기
미리보기
불러오는 중...
취소
저장