User sylvainulg - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:27:26Z http://stackoverflow.com/feeds/user/15304 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators 5 What is the lifetime and validity of C++ iterators ? sylvainulg 2009-04-17T06:40:01Z 2009-07-16T12:30:38Z <p>I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the list periodically), and the order of items isn't important either.</p> <p>So I thought of <em><code>std::list&lt;Thing*&gt; with this-&gt;position = insert(lst.end(), thing)</code></em> should do the trick. I'd like the Thing class to remember the position of each instance so that i can later easily do <em><code>lst.erase(this-&gt;position)</code></em> in constant time. </p> <p>However, i'm still a bit new to C++ STL containers, and i don't know if it's safe to keep iterators for such a long time. Especially, given that there will be other elements deleted ahead and after the inserted Thing before it's gone.</p> http://stackoverflow.com/questions/221387/how-do-i-programatically-search-for-wi-fi-access-point-using-palib-on-the-nintend/825415#825415 1 Answer by sylvainulg for How do I programatically search for Wi-Fi access point using PAlib on the Nintendo DS sylvainulg 2009-05-05T15:23:52Z 2009-05-05T15:23:52Z <p>i used the code from ds_wifi_test (which comes with the original dswifi library) when i tried to implement this. Basically, access points are scanned internally when you invoke <code>Wifi_ScanMode()</code>. You can then have the number of AP identified with <code>Wifi_GetNumAP()</code> and retrieve the information for the ith access point with <code>Wifi_GetAPData(i,&amp;data);</code></p> <pre><code>nbitems=Wifi_GetNumAP(); Wifi_AccessPoint ap; for (int i=0;i&lt;nbitems; i++) { if(Wifi_GetAPData(i+scrolltop,&amp;ap)==WIFI_RETURN_OK) do_whatever_with(&amp;ap); } </code></pre> <p>I'm not aware of any "helper" functions through the PALib in this regards. All the PALib seems to have is a few "wrappers" to ease common tasks once a WFC setting has been defined (<a href="http://www.palib.info/wiki/doku.php?id=day20" rel="nofollow">see day#20 tutorial</a>)</p> http://stackoverflow.com/questions/132121/what-makes-a-pthread-defunct 2 What makes a pthread defunct ? sylvainulg 2008-09-25T08:29:15Z 2008-11-08T12:08:01Z <p>i'm working with a multi-threaded program (using pthreads) that currently create a background thread (PTHREAD_DETACHED) and then invokes pthread_exit(0). My problem is that the process is then listed as "defunct" and curiously do not seems to "really exists" in /proc (which defeats my debugging strategies)</p> <p>I would like the following requirements to be met:</p> <ul> <li>the program should run function A in a loop and function B once</li> <li>given the PID of the program /proc/$pid/exe, /proc/$pid/maps and /proc/$pid/fd must be accessible (when the process is defunct, they are all empty or invalid links)</li> <li>it must be possible to suspend/interrupt the program with CTRL+C and CTRL+Z as usual</li> </ul> <p><em>edit:</em> I hesitate changing the program's interface for having A in the "main" thread and B in a spawned thread (they are currently in the other way). Would it solve the problem ?</p> http://stackoverflow.com/questions/145157/nintendo-ds-homebrew-with-ada/264837#264837 1 Answer by sylvainulg for Nintendo DS homebrew with Ada? sylvainulg 2008-11-05T10:58:57Z 2008-11-05T10:58:57Z <p>One thing to consider when porting a language to the nintendo DS is the relatively small stack it has (16KB). There are possible workarounds such as swapping the SRAM stack content into DRAM (4MB) when stack gets full or just have the whole stack in DRAM (assumed to be auwfully slow).</p> <p>And I second Dre on the fact that you'll have to provide yourself glu between the ADA library function you'd like to use and existing libraries on the DS (which are hopefully covering most of the hardware stuff).</p> http://stackoverflow.com/questions/137443/how-can-i-turn-an-image-file-of-a-game-map-into-boundaries-in-my-program/138845#138845 0 Answer by sylvainulg for How can I turn an image file of a game map into boundaries in my program? sylvainulg 2008-09-26T11:21:33Z 2008-09-26T11:21:33Z <p>Well, i can see two cases with two different "best solution" depending on where your graphic comes from:</p> <ol> <li><p>Your graphics is tiled, and thus you can easily "recognize" a block because it's using the same graphics as other blocks and all you would have to do is a program that, when given a list of "blocking tiles" and a map can produce a "collision map" by comparing each tile with tiles in the "blocking list". </p></li> <li><p>Your graphics is just some graphics (e.g. it could be a picture, or some CG graphics) and you don't expect pixels for a block to be the same as pixels from another block. You could still try to apply an "edge detection" algorithm on your picture, but my guess is then that you should rather split your picture in a BG layer and a FG layer so that the FG layer has a pre-defined color (or alpha=0) and test pixels against that color to define whether things are blocking or not.</p></li> <li><p>You don't have much blocking shapes, but they are usually complex (polygons, ellipses) and would be unefficient to render using a bitmap of the world or to pack as "tile attributes". This is typically the case for point-and-click adventure games, for instance. In that case, you're probably to create path that match your boundaries with a vector drawing program and dig for a library that does polygon intersection or bezier collisions.</p></li> </ol> <p>Good luck and have fun.</p> http://stackoverflow.com/questions/132241/hidden-features-of-c/132469#132469 14 Answer by sylvainulg for Hidden features of C sylvainulg 2008-09-25T10:16:48Z 2008-09-25T10:16:48Z <p>anonymous structures and arrays is my favourite one. (cf. <a href="http://www.run.montefiore.ulg.ac.be/~martin/resources/kung-f00.html" rel="nofollow">http://www.run.montefiore.ulg.ac.be/~martin/resources/kung-f00.html</a>)</p> <pre><code>setsockopt(yourSocket, SOL_SOCKET, SO_REUSEADDR, (int[]){1}, sizeof(int)); </code></pre> <p>or </p> <pre><code>void myFunction(type* values) { while(*values) x=*values++; } myFunction((type[]){val1,val2,val3,val4,0}); </code></pre> <p>it can even be used to instanciate linked lists...</p> http://stackoverflow.com/questions/103016/broken-pipe-no-longer-ends-programs 2 Broken pipe no longer ends programs ? sylvainulg 2008-09-19T15:39:44Z 2008-09-24T11:24:00Z <p>When you pipe two process and kill the one at the "output" of the pipe, the first process used to receive the "Broken Pipe" signal, which usually terminated it aswell. E.g. running</p> <pre><code>$&gt; do_something_intensive | less </code></pre> <p>and then exiting <em>less</em> used to return you immediately to a responsive shell, on a SuSE8 or former releases. when i'm trying that today, *do_something_intensive* is obviously still running until i kill it manually. It seems that something has changed (glib ? shell ?) that makes program ignore "broken pipes" ...</p> <p>Anyone of you has hints on this ? how to restore the former behaviour ? why it has been changed (or why it always existed multiple semantics) ?</p> <p><em>edit</em> : further tests (using strace) reveal that "SIGPIPE" <em>is</em> generated, but that the program is not interrupted. A simple</p> <pre><code>#include &lt;stdio.h&gt; int main() { while(1) printf("dumb test\n"); exit(0); } </code></pre> <p>will go on with an endless</p> <pre><code>--- SIGPIPE (Broken pipe) @ 0 (0) --- write(1, "dumb test\ndumb test\ndumb test\ndu"..., 1024) = -1 EPIPE (Broken pipe) </code></pre> <p>when <em>less</em> is killed. I could for sure program a signal handler in my program and ensure it terminates, but i'm more looking for some environment variable or a shell option that would force programs to terminate on SIGPIPE</p> <p><em>edit again</em>: it seems to be a tcsh-specific issue (bash handles it properly) and terminal-dependent (Eterm 0.9.4)</p> http://stackoverflow.com/questions/103016/broken-pipe-no-longer-ends-programs/121892#121892 0 Answer by sylvainulg for Broken pipe no longer ends programs ? sylvainulg 2008-09-23T15:50:35Z 2008-09-24T11:22:41Z <p>Thanks for your advices, the solution is getting closer...</p> <p>According to the manpage of tcsh, "non-login shells inherit the terminate behavior from their parents. Other signals have the values which the shell inherited from its parent."</p> <p>Which suggest my <em>terminal</em> is actually the root of the problem ... if it ignored SIGPIPE, the shell itself will ignore SIGPIPE as well ... </p> <p><em>edit:</em> i have the definitive confirmation that the problem only arise with Eterm+tcsh and found a suspiciously missing signal(SIGPIPE,SIG_DFL) in Eterm source code. I think that close the case.</p> http://stackoverflow.com/questions/125893/is-there-an-alternative-to-ftp/125950#125950 1 Answer by sylvainulg for Is there an alternative to FTP? sylvainulg 2008-09-24T08:03:42Z 2008-09-24T08:03:42Z <p>HTTP might be faster if you manage to do parallel download of different pieces (with HTTP/1.1 only, afaik). Complexity of channel encoding is hardly relevant here, since your computer will likely reach bandwidth limit quite earlier than it will lack processing time.</p> <p>Bittorrent will not improve speed in a one-to-one setup, but it might ease resuming a failed (or interrupted) transmission, and might catch and fix transmission errors that FTP couldn't (though this is very unlikely).</p> <p>rsync and scp are indeed more common alternative as they require very little setup to get started.</p> http://stackoverflow.com/questions/7209/alpha-blending-sprites-in-nintendo-ds-homebrew/119880#119880 3 Answer by sylvainulg for Alpha blending sprites in Nintendo DS Homebrew sylvainulg 2008-09-23T08:39:44Z 2008-09-23T08:39:44Z <p>As a generic reference, i once wrote<a href="http://sylvainhb.blogspot.com/2006/09/alpha-blending.html" rel="nofollow">a small blog entry</a> about that issue. Basically, you first have to define which layer is alpha-blended against which other layer(s). Afaik,</p> <ul> <li>the source layer(s) must be over destination layer(s) to have some blending displayed. that means the priority of source layers should be numerically lower than the the priority of destination layers.</li> <li>the source layer is what is going to be translucent, the destination(s) is what is going to be seen through (and yes, i find this rather confusing).</li> </ul> http://stackoverflow.com/questions/1716296/why-does-printf-not-flush-after-the-call-unless-a-newline-is-in-the-format-string Comment by sylvainulg on Why does printf not flush after the call unless a newline is in the format string? (in C) sylvainulg 2009-11-12T16:50:13Z 2009-11-12T16:50:13Z did you investigated whether this happens with any file or only with terminals? that would sound to be a clever terminal feature not to output uncompleted line from a background program, though i expect it wouldn't apply to <i>the</i> foreground program. http://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators/759626#759626 Comment by sylvainulg on What is the lifetime and validity of C++ iterators ? sylvainulg 2009-04-17T11:55:55Z 2009-04-17T11:55:55Z thanks for the info. I was already using SGI's documentation, but i guess i overlooked the notes and didn't notice the answer was there. http://stackoverflow.com/questions/132121/what-makes-a-pthread-defunct/132143#132143 Comment by sylvainulg on What makes a pthread defunct ? sylvainulg 2008-09-25T08:51:28Z 2008-09-25T08:51:28Z If that would fix the problem, i'd face the challenge of reorganising the software so that it can be done. It's my first real exposure to pthreads, actually. http://stackoverflow.com/questions/103016/broken-pipe-no-longer-ends-programs Comment by sylvainulg on Broken pipe no longer ends programs ? sylvainulg 2008-09-23T08:20:28Z 2008-09-23T08:20:28Z it shows up in a PS list, the sheel doesn't respond until i kill the whole chain with CTRL+C and CPU usage gets high in gkrellm. the shell in use is tcsh, as now mentionned in the more-detailed question. thanks for your comment. http://stackoverflow.com/questions/103016/broken-pipe-no-longer-ends-programs/103445#103445 Comment by sylvainulg on Broken pipe no longer ends programs ? sylvainulg 2008-09-23T08:10:15Z 2008-09-23T08:10:15Z about do_something_intensive: if i'm doing &quot;yes | less&quot; and terminate 'less', &quot;yes&quot; receives a SIGPIPE and terminates. if instead i'm doing &quot;objdump -drS ... | less&quot;, &quot;objdump&quot; goes on (despite strace reveals reapeated SIGPIPEs); so does a dumb loop doing &quot;printf&quot;.