Displaying 6 results from an estimated 6 matches for "uint_least64_t".
Did you mean:
int_least64_t
2020 Mar 06
1
Re: [PATCH nbdkit 2/4] server: Add nbdkit_shutdown() call.
...s looks fishy. POSIX says that:
https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdint.h.html#tag_13_48
"The argument in any instance of these macros shall be an unsuffixed
integer constant with a value that does not exceed the limits for the
corresponding type.
...For example, if uint_least64_t is a name for the type unsigned long
long, then UINT64_C(0x123) might expand to the integer constant 0x123ULL."
In fact, in glibc's /usr/include/stdint.h, we have:
# if __WORDSIZE == 64
# define INT64_C(c) c ## L
# else
# define INT64_C(c) c ## LL
# endif
Your code works by she...
2014 May 08
2
compile error about 6.0.2
...lude/inttypes.h:9,
from /mlsyslinux/com32/libupload/cpio.c:9:
/mlsyslinux/com32/include/stdint.h:13: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?int_least64_t?
/mlsyslinux/com32/include/stdint.h:18: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?uint_least64_t?
/mlsyslinux/com32/include/stdint.h:21: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?int_fast64_t?
/mlsyslinux/com32/include/stdint.h:24: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?uint_fast64_t?
/mlsyslinux/com32/include/stdint.h:26: error: expected ?=?, ?,?...
2014 May 08
0
compile error about 6.0.2
...:9,
> from /mlsyslinux/com32/libupload/cpio.c:9:
> /mlsyslinux/com32/include/stdint.h:13: error: expected ?=?, ?,?, ?;?,
?asm? or ?__attribute__? before ?int_least64_t?
> /mlsyslinux/com32/include/stdint.h:18: error: expected ?=?, ?,?, ?;?,
?asm? or ?__attribute__? before ?uint_least64_t?
> /mlsyslinux/com32/include/stdint.h:21: error: expected ?=?, ?,?, ?;?,
?asm? or ?__attribute__? before ?int_fast64_t?
> /mlsyslinux/com32/include/stdint.h:24: error: expected ?=?, ?,?, ?;?,
?asm? or ?__attribute__? before ?uint_fast64_t?
> /mlsyslinux/com32/include/stdint.h:26: error: ex...
2004 Sep 10
2
1.0 candidate checked in
> OK, attempting one more convergence on all this, here's
> what I did:
>
> 1. Reverted back to rev 1.5 of src/libFLAC/ia32/Makefile.am
> 2. Applied Matt's last cleanup patch of 8 files. I did not
> apply the patch to src/test_unit/main.c since it looks wrong.
> main.c is supposed to include the local bitbuffer.h, not
> src/libFLAC/private/bitbuffer.h; I think the
2014 May 12
2
compile error about 6.0.2
...:9,
> from /mlsyslinux/com32/libupload/cpio.c:9:
> /mlsyslinux/com32/include/stdint.h:13: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?int_least64_t?
> /mlsyslinux/com32/include/stdint.h:18: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?uint_least64_t?
> /mlsyslinux/com32/include/stdint.h:21: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?int_fast64_t?
> /mlsyslinux/com32/include/stdint.h:24: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?uint_fast64_t?
> /mlsyslinux/com32/include/stdint.h:26: error: ex...
2020 Mar 04
7
[PATCH nbdkit 0/4] server: Add nbdkit_shutdown() call and two new filters.
This adds a new nbdkit_shutdown() API whereby plugins and filters can
request that the server shuts down (asynchronously) during the serving
phase.
Two new filters are added, one of which depends on this feature and
the other not needing it but being somewhat related.
Rich.