代码搜索:sync

找到约 6,244 项符合「sync」的源代码

代码结果 6,244
www.eeworm.com/read/216502/4891784

s sync.s

.globl _sync .sync = 36. _sync: mov r5,-(sp) mov sp,r5 sys .sync mov (sp)+,r5 rts pc
www.eeworm.com/read/216499/4892247

8 sync.8

.th SYNC VIII 11/1/73 .sh NAME sync \*- update the super block .sh SYNOPSIS .bd sync .sh DESCRIPTION .it Sync executes the .it sync system primitive. If the system is to be stopped, .it sync must be c
www.eeworm.com/read/216499/4892279

2 sync.2

.th SYNC II 8/5/73 .sh NAME sync \*- update super-block .sh SYNOPSIS (sync = 36.; not in assembler) .br .ft B sys sync .ft R .sh DESCRIPTION .it Sync causes all information in core memory that should
www.eeworm.com/read/216499/4892817

s sync.s

.globl _sync sync = 36. _sync: mov r5,-(sp) mov sp,r5 sys sync mov (sp)+,r5 rts pc
www.eeworm.com/read/216499/4893165

c sync.c

main() { sync(); }
www.eeworm.com/read/216450/4894182

s sync.s

.sect .text .extern __sync .define _sync .align 2 _sync: jmp __sync
www.eeworm.com/read/216450/4894509

c _sync.c

#include #define sync _sync #include PUBLIC int sync() { message m; return(_syscall(FS, SYNC, &m)); }
www.eeworm.com/read/216450/4894959

8 sync.8

.TH SYNC 8 .SH NAME sync \- flush the cache to disk .SH SYNOPSIS \fBsync\fR .br .de FL .TP \\fB\\$1\\fR \\$2 .. .de EX .TP 20 \\fB\\$1\\fR # \\$2 .. .SH EXAMPLES .EX "sync" "Write out all modified cac
www.eeworm.com/read/216450/4895003

2 sync.2

.\" Copyright (c) 1980 Regents of the University of California. .\" All rights reserved. The Berkeley software License Agreement .\" specifies the terms and conditions for redistribution. .\" .\" @(#
www.eeworm.com/read/209211/4982503

c sync.c

#include "stdinc.h" #include "dat.h" #include "fns.h" char *host; void usage(void) { fprint(2, "usage: sync [-h host]\n"); exits("usage"); } int main(int argc, char *argv[]) { VtSession *z; AR