search for: typedef'ing

Displaying 13 results from an estimated 13 matches for "typedef'ing".

2013 Mar 05
4
2GB limit patch
...just force flac to be built with 64 bit file offsets and just > reject any caller trying to include/link libflac into a non-lfs program > like > > http://ac-archive.sourceforge.net/largefile/off_t_headers.html > > Then we can fix all the internal problems, without the need of > typedef'ing around ;) Well, I'm afraid typedef'ing or something is mandatory for large file support on win32, since off_t is *always* 32bit on win32 and flac basically uses off_t everywhere for seek offset and file size.
2013 Mar 05
3
2GB limit patch
> This is an older issue reported in 2007: > http://lists.xiph.org/pipermail/flac-dev/2007-September/002423.html > > The fix would be to use _ftelli64 instead of ftell with Visual Studio. > http://msdn.microsoft.com/en-us/library/0ys3hc0b%28v=vs.110%29.aspx That's not enough. At least, the followings are also needed. 1. Change off_t to something else. off_t can lead to ABI
2005 Mar 17
1
Bogus autoconf test for socklen_t
This affects the XMMS plugin. configure.in has this test: AC_CHECK_TYPES(socklen_t, [], []) And src/plugin_xmms/http.c is the only consumer: #ifndef HAVE_SOCKLEN_T typedef unsigned int socklen_t; #endif Together this looks bogus to me. The configure check looks for socklen_t in the default headers. If it isn't found there, socklen_t will be typedef'ed. However, at least on FreeBSD socklen_t is defined in <sys/socket.h>, which is not checked by AC_...
2013 Mar 06
0
2GB limit patch
...file offsets and just >> reject any caller trying to include/link libflac into a non-lfs >> program >> like >> >> http://ac-archive.sourceforge.net/largefile/off_t_headers.html >> >> Then we can fix all the internal problems, without the need of >> typedef'ing around ;) > > Well, I'm afraid typedef'ing or something is mandatory for large file > support on win32, since off_t is *always* 32bit on win32 and flac > basically uses off_t everywhere for seek offset and file size. I do not see the need to jump to 64-bit merely to ge...
1999 Dec 28
2
autoconf check for socklen_t
Here's a configure check to see if socklen_t is defined. Even though my man pages on linux say accept(2) takes (int *) as it's 3rd arg, the sys/socket.h files begs to differ. If not defined (which is doesn't seem to be on AIX 4.2.1), it can be explicitly typedef'ed to (unsigned int). Now do mainstream code changes get submitted back to the openbsd group, or would it be better to submit to this list? After defining all those variables to socklen_t, this should clean up the spurious errors spewed forth from AIX's native compiler, about the uncast c...
2004 Sep 10
0
'out of range' Warnings Building FLAC
...t suite: testing zeroes, raw_uint32*... FAILED pattern match testing process_until_end_of_stream()... 0... 1... 2... ERROR: metadata block mismatch for example. The problem is that gcc 2.7.2.3 wants a 'ULL' suffix for integer constants of type 'unsigned long long' (as typedef'ed by FLAC__uint64). Appending this makes for a clean build and check. I've attached a patch file, but it's platform specific and the problem really needs to be sorted out in a portable way. Also, just a couple of additions I'd like to see to the README: Congratulations on having...
2004 Sep 10
0
'out of range' Warnings Building FLAC
...a problem. I get a > number of 'integer constant out of range' warnings during the make, > and these give rise to failures in the test suite: [...] > The problem is that gcc 2.7.2.3 wants a 'ULL' suffix for integer > constants of type 'unsigned long long' (as typedef'ed by FLAC__uint64). > Appending this makes for a clean build and check. I have a hunch gcc 2.7.2.3 is not being ANSI here but I'll take the patch under advisement. thanks. > Also, just a couple of additions I'd like to see to the README: [...] got it. Josh <p>______...
2013 Mar 05
0
2GB limit patch
...can be forgiven :-) I will just force flac to be built with 64 bit file offsets and just reject any caller trying to include/link libflac into a non-lfs program like http://ac-archive.sourceforge.net/largefile/off_t_headers.html Then we can fix all the internal problems, without the need of typedef'ing around ;)
2002 May 27
9
[Bug 257] sftp and 32 bit integar
http://bugzilla.mindrot.org/show_bug.cgi?id=257 ------- Additional Comments From markus at openbsd.org 2002-05-27 17:09 ------- openssh is not derived from ssh.com-2.x or 3.x. but adding support for 32bit int is not hard. you can attach patches to this bug. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2011 Jul 07
0
[LLVMdev] Improving Garbage Collection
...ck maps in order to enumerate roots. The GC could optimize its barriers and provide its own code info manager to handle enumerating roots in those barriers. Thoughts? Todd Below are the relevant portions from our runtime's include files. /* This is essentially a pointer-sized integer. */ typedef char *PrtRegister; /* These are used to document function parameters to indicate whether they are IN, OUT, or INOUT. */ #define PRT_IN #define PRT_OUT #define PRT_INOUT /* *********************************************************************************************** * Basic constants, definition...
2011 Jul 07
4
[LLVMdev] Improving Garbage Collection
On 07.07.2011 08:31, Nate Fries wrote: > On 7/6/2011 6:24 PM, Talin wrote: >> The LLVM code generators and analysis passes have a much more >> thorough knowledge of SSA value lifetimes than frontends do, and >> therefore could avoid spilling and reloading of values when it wasn't >> needed. > Although this would indeed be nice, it is not done by similar >
2020 Aug 28
0
Wine release 5.16
.... combase: Move CoGetCurrentProcess(). ole32: Use public symbol for maximum moniker comparison data length. dwrite: Add partial implementation for IDWriteFontFace5::Equals(). combase: Expose ROT access helpers. ole32: Use combase for ROT access. ole32: Get rid of typedef'ed type for apartment structure. ole32: Simplify apartment lookup helper. ole32: Move apartment and activation management to a separate file. combase: Move core apartment and activation functionality. combase: Move CoFreeUnusedLibrariesEx(). ole32: Use single stati...
2011 Jul 07
2
[LLVMdev] Improving Garbage Collection
...ze its barriers and provide its own code info manager to handle enumerating roots in those barriers.**** ** ** Thoughts?**** ** ** Todd**** ** ** ** ** Below are the relevant portions from our runtime’s include files.**** ** ** ** ** /* This is essentially a pointer-sized integer. */**** typedef char *PrtRegister;**** ** ** /* These are used to document function parameters to indicate whether they are IN, OUT, or INOUT. */**** #define PRT_IN**** #define PRT_OUT**** #define PRT_INOUT**** ** ** /***** ***********************************************************************************...