Displaying 4 results from an estimated 4 matches for "time_copi".
Did you mean:
time_copy
2010 Mar 18
0
[MODULE] COM32 module to time null-dumping a file
From: Gene Cumm <gene.cumm at gmail.com>
COM32/samples/cptime.c: A module for coarse null-dumping speed
comparisons. Accepts multiple files and an option of -s (as the first
option) to provide a simple output. Also computes/displays +/- 1 tick
to show coarseness.
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
I'd recommend using a file that takes around 100 ticks to
2014 Nov 22
3
Use z size specifier for printf-ing size_t variable
Hello.
Use the z size specifier to printf-ing size_t variables to get rid of gcc
warning
format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int?
--
MartinS
diff --git a/com32/lib/syslinux/initramfs_file.c b/com32/lib/syslinux/initramfs_file.c
index 7eb55b5..9f9fa75 100644
--- a/com32/lib/syslinux/initramfs_file.c
+++ b/com32/lib/syslinux/initramfs_file.c
@@
2010 Mar 20
1
[MODULE] COM32 module to time null-dumping a file, v1.1
From: Gene Cumm <gene.cumm at gmail.com>
COM32/samples/cptime.c: A module for coarse null-dumping speed
comparisons. Accepts multiple files and several options. -l shows
long format (default; for overriding -s). -s shows short format. -b
<NUM> changes the transfer buffer size. Also computes/displays +/- 1
tick to show coarseness in long format.
Signed-off-by: Gene Cumm
2015 Jan 25
0
Use z size specifier for printf-ing size_t variable
On Sat, Nov 22, 2014 at 10:39 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
> Hello.
>
> Use the z size specifier to printf-ing size_t variables to get rid of gcc
> warning
> format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int?
Please, add the signed-off line.
>
>
> --
> MartinS
>
> diff --git