search for: check_point

Displaying 12 results from an estimated 12 matches for "check_point".

Did you mean: check_pointer
2010 Jul 09
8
DO NOT REPLY [Bug 7565] New: --check-point=<TIME> +options.c.patch +generator.c.patch
...--- *** work/rsync-3.0.7/options.c.orig 2009-12-22 00:40:41.000000000 +0200 --- work/rsync-3.0.7/options.c 2010-07-09 15:16:22.000000000 +0300 *************** *** 165,170 **** --- 165,171 ---- char *rsync_path = RSYNC_PATH; char *backup_dir = NULL; char backup_dir_buf[MAXPATHLEN]; + long check_point = -1; char *sockopts = NULL; int rsync_port = 0; int compare_dest = 0; *************** *** 325,330 **** --- 326,332 ---- rprintf(F," -b, --backup make backups (see --suffix & --backup-dir)\n"); rprintf(F," --backup-dir=DIR make backups into...
2008 Jul 07
0
[ win32utils-Support Requests-11344 ] Can''t user win32-service inside of a Rails application
...ce.services puts @services.first => => #<struct Struct::Win32Service service_name="Abiosdsk", display_name="Abiosdsk", service_type="kernel driver", current _state="stopped", controls_accepted=nil, win32_exit_code=1077, service_specific_exit_code=0, check_point=0, wait_hint=0, binary_path_name=nil, start_type="disabled", error_control="ignore", load_order_group="Primary disk", tag_id=3, start_n ame=nil, dependencies=nil, description=nil, :interactive?=false, pid=0, service_flags=0> If I do the same inside a Rails control...
2007 Jun 04
0
[ win32utils-Support Requests-11344 ] Can''t user win32-service inside of a Rails application
...ce.services puts @services.first => => #<struct Struct::Win32Service service_name="Abiosdsk", display_name="Abiosdsk", service_type="kernel driver", current _state="stopped", controls_accepted=nil, win32_exit_code=1077, service_specific_exit_code=0, check_point=0, wait_hint=0, binary_path_name=nil, start_type="disabled", error_control="ignore", load_order_group="Primary disk", tag_id=3, start_n ame=nil, dependencies=nil, description=nil, :interactive?=false, pid=0, service_flags=0> If I do the same inside a Rails control...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...eturn fd; +} + +static void concat(char *dst, char *args[]) +{ + unsigned int i, len = 0; + + for (i = 0; args[i]; i++) { + strcpy(dst+len, args[i]); + strcat(dst+len, " "); + len += strlen(args[i]) + 1; + } + /* In case it's empty. */ + dst[len] = '\0'; +} + +static void *_check_pointer(unsigned long addr, unsigned int size, + unsigned int line) +{ + if (addr >= RESERVE_TOP || addr + size >= RESERVE_TOP) + errx(1, "%s:%i: Invalid address %li", __FILE__, line, addr); + return (void *)addr; +} +#define check_pointer(addr,size) _check_pointer(addr, size, __LI...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...eturn fd; +} + +static void concat(char *dst, char *args[]) +{ + unsigned int i, len = 0; + + for (i = 0; args[i]; i++) { + strcpy(dst+len, args[i]); + strcat(dst+len, " "); + len += strlen(args[i]) + 1; + } + /* In case it's empty. */ + dst[len] = '\0'; +} + +static void *_check_pointer(unsigned long addr, unsigned int size, + unsigned int line) +{ + if (addr >= RESERVE_TOP || addr + size >= RESERVE_TOP) + errx(1, "%s:%i: Invalid address %li", __FILE__, line, addr); + return (void *)addr; +} +#define check_pointer(addr,size) _check_pointer(addr, size, __LI...
2010 Jul 12
3
DO NOT REPLY [Bug 2094] Keep the last-sync time for better two-way synchronization
https://bugzilla.samba.org/show_bug.cgi?id=2094 matt at mattmccutchen.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |baya at rodovid.org ------- Comment #2 from matt at mattmccutchen.net 2010-07-12 15:02 CST ------- *** Bug 7565 has been marked
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...ask); + act.sa_flags = 0; + sigaction(SIGUSR1, &act, NULL); + + pipe(pipefd); + child = fork(); + if (child == -1) + err(1, "forking"); + + if (child == 0) { + close(pipefd[1]); + wake_parent(pipefd[0], device_list); + } + close(pipefd[0]); + + return pipefd[1]; +} + +static void *_check_pointer(unsigned long addr, unsigned int size, + unsigned int line) +{ + if (addr >= LGUEST_GUEST_TOP || addr + size >= LGUEST_GUEST_TOP) + errx(1, "%s:%i: Invalid address %li", __FILE__, line, addr); + return (void *)addr; +} +#define check_pointer(addr,size) _check_pointer(addr,...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...ask); + act.sa_flags = 0; + sigaction(SIGUSR1, &act, NULL); + + pipe(pipefd); + child = fork(); + if (child == -1) + err(1, "forking"); + + if (child == 0) { + close(pipefd[1]); + wake_parent(pipefd[0], device_list); + } + close(pipefd[0]); + + return pipefd[1]; +} + +static void *_check_pointer(unsigned long addr, unsigned int size, + unsigned int line) +{ + if (addr >= LGUEST_GUEST_TOP || addr + size >= LGUEST_GUEST_TOP) + errx(1, "%s:%i: Invalid address %li", __FILE__, line, addr); + return (void *)addr; +} +#define check_pointer(addr,size) _check_pointer(addr,...
2007 Apr 18
1
[PATCH 0/2] Use a single loader for i386 and x86_64
..., pgdir %i, e=%#08x page_off=0x%08x\n", + verbose("Telling kernel limit %lu, pgdir %li, e=%#08lx page_off=0x%08lx\n", pagelimit, pgdir, start, page_offset); if (write(fd, args, sizeof(args)) < 0) err(1, "Writing to /dev/lguest"); @@ -423,7 +569,7 @@ static void *_check_pointer(unsigned lon #define check_pointer(addr,size) _check_pointer(addr, size, __LINE__) /* Returns pointer to dma->used_len */ -static u32 *dma2iov(unsigned long dma, struct iovec iov[], unsigned *num) +static unsigned long *dma2iov(unsigned long dma, struct iovec iov[], unsigned *num) { uns...
2007 Apr 18
1
[PATCH 0/2] Use a single loader for i386 and x86_64
..., pgdir %i, e=%#08x page_off=0x%08x\n", + verbose("Telling kernel limit %lu, pgdir %li, e=%#08lx page_off=0x%08lx\n", pagelimit, pgdir, start, page_offset); if (write(fd, args, sizeof(args)) < 0) err(1, "Writing to /dev/lguest"); @@ -423,7 +569,7 @@ static void *_check_pointer(unsigned lon #define check_pointer(addr,size) _check_pointer(addr, size, __LINE__) /* Returns pointer to dma->used_len */ -static u32 *dma2iov(unsigned long dma, struct iovec iov[], unsigned *num) +static unsigned long *dma2iov(unsigned long dma, struct iovec iov[], unsigned *num) { uns...
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c