Displaying 3 results from an estimated 3 matches for "do_timeout".
Did you mean:
io_timeout
2006 May 24
0
rsync connection limit
...uot;remote command could not be run" },
diff -Naur rsync-2.6.8/options.c rsync-2.6.8-new/options.c
--- rsync-2.6.8/options.c Wed Mar 29 02:09:36 2006
+++ rsync-2.6.8-new/options.c Wed May 24 15:50:43 2006
@@ -93,6 +93,7 @@
int daemon_over_rsh = 0;
int do_stats = 0;
int do_progress = 0;
+int do_timeout = 0;
int keep_partial = 0;
int safe_symlinks = 0;
int copy_unsafe_links = 0;
@@ -506,6 +507,7 @@
{"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0},
{"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
{"timeout",...
2004 Jun 03
0
[PATCH] provide io_schedule for 2.4
...UnlockPage(p)
#define Page_Uptodate(p) PageUptodate(p)
+#define io_schedule schedule
+
#else /* LINUX_VERSION_CODE < 2.6 */
#define OCFS_GENERIC_SB_MEMBER(sb) ((sb)->s_fs_info)
--- src/hash.c (revision 994)
+++ src/hash.c (working copy)
@@ -536,11 +536,7 @@
#endif
if (!do_timeout) {
set_task_state(tsk, TASK_UNINTERRUPTIBLE);
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
io_schedule();
-#else
- schedule();
-#endif
} else {
do_timeout = 0;
set_task_state(tsk, TASK_INTERRUPTIBLE);
2009 Jul 15
0
[PATCH] gfxboot: parse TIMEOUT keyword
...ffer (0: no buffer)
mov ecx, max_cmd_len ; buffer size
-; xor eax,eax ; timeout value (0: no timeout)
- mov eax,100 ; timeout value (0: no timeout)
+ mov eax,[menu_timeout] ; timeout value (0: no timeout)
call far [gfx_bc_input]
ret
@@ -786,6 +785,42 @@ do_default:
.noparm:
ret
+do_timeout:
+ call skipspace
+ jz .eof
+ jc .noparm
+ call ungetc
+ push es
+ push di
+ push cs
+ pop es
+ mov di,NumBuf
+.getnum:
+ cmp di,NumBufEnd
+ jae .loaded
+ call getc
+ stosb
+ cmp al,'-'
+ jnb .getnum
+ call ungetc
+ dec di
+.loaded:
+ mov byte [di],0
+ pop di
+ pop es
+...