Search found 1841 matches

by WinterMute
Mon Aug 16, 2010 11:39 pm
Forum: devkitARM
Topic: dup() and dup2() ?
Replies: 4
Views: 6445

Re: dup() and dup2() ?

stream redirection isn't supported, sorry. Despite appearances to the contrary there is no underlying OS and some things don't work.
by WinterMute
Mon Aug 16, 2010 12:45 pm
Forum: Gamecube/Wii Development
Topic: DI_Eject(); Not Working
Replies: 4
Views: 5918

Re: DI_Eject(); Not Working

c:/devkitPro/examples/wii/Wii_Eject/source/main.c:5:16: warning: di.h: No such file or directory c:/devkitPro/examples/wii/Wii_Eject/source/main.c: In function 'main': c:/devkitPro/examples/wii/Wii_Eject/source/main.c:58: warning: implicit declaration of function 'DI_Eject' is caused by not using t...
by WinterMute
Sun Aug 15, 2010 11:59 am
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23514

Re: send with big buffer

It's not a send bug, it's a closesocket bug - basically the socket is being closed while there's still data to send, you can work around that by inserting a delay after send completion before the closesocket. I've spoken to sgstair about this and he's of the opinion that dswifi needs rewritten ( the...
by WinterMute
Sun Aug 15, 2010 11:01 am
Forum: Announcements
Topic: libnds 1.4.5, default arm7 0.5.14
Replies: 5
Views: 15132

Re: libnds 1.4.5, default arm7 0.5.14

Please don't derail announcement threads with discussions of unrelated features, there's a forum for dswifi discussion.
by WinterMute
Fri Aug 13, 2010 10:37 pm
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23514

Re: send with big buffer

Remove PAlib from your system and reinstall the latest tools, until then there will be no support for you here. Basically we can't guarantee *anything* will work as expected when you use that library.

http://wiki.devkitpro.org/index.php/PAlib
by WinterMute
Fri Aug 13, 2010 11:57 am
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23514

Re: send with big buffer

send can and will return without sending all of the data you requested, you need to check for this and compensate. //--------------------------------------------------------------------------------- int sendData(int socket, int sendsize, char *buffer) { //--------------------------------------------...
by WinterMute
Wed Aug 11, 2010 8:40 pm
Forum: Off Topic
Topic: What is devkit?
Replies: 8
Views: 13166

Re: What is devkit?

http://wiki.devkitpro.org/index.php/About

which particular devkit were you interested in?
by WinterMute
Wed Aug 11, 2010 8:38 pm
Forum: devkitARM
Topic: Anything wrong maybe I do?SOS!
Replies: 1
Views: 4204

Re: Anything wrong maybe I do?SOS!

devkitARM isn't compatible with cygwin, sorry. We provide msys with the windows installer which provides the usual 'nix tools but you'll need to make sure that cygwin isn't in your path when you compile.
by WinterMute
Sun Aug 08, 2010 4:18 pm
Forum: Off Topic
Topic: Makefile .ISO File
Replies: 1
Views: 3958

Re: Makefile .ISO File

These aren't really the kind of questions we need or want here. Using burned discs on a modded Wii is generally done only for the sake of piracy which is something we neither condone nor support. Generally Wii homebrew is run via the Homebrew Channel found at http://hbc.hackmii.com/. This is simple,...
by WinterMute
Sun Aug 08, 2010 4:02 pm
Forum: devkitARM
Topic: How can I make custom malloc / free?
Replies: 10
Views: 18233

Re: How can I make custom malloc / free?

That's awesome, just tested with devkitARM, thanks cdmac. void *__real__malloc_r(struct _reent*r, size_t size); void *__wrap__malloc_r(struct _reent*r, size_t size) { iprintf("my malloc\n"); /* do this or write your own allocator */ return __real_malloc_r(r,size); } and add -Wl,-wrap,_mall...