User Malkocoglu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T13:14:07Zhttp://stackoverflow.com/feeds/user/31152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1720987/dns-answer-returning-ns-records-without-ip-addresses-is-this-normal0DNS answer returning NS records without IP addresses , is this normal ?Malkocoglu2009-11-12T09:23:20Z2009-11-27T02:45:27Z
<p>In my application, I have to send notification e-mails from time to time. In order to send mail (over SMTP), I have to get the MX server of that particular domain (domain part of e-mail address). This is not a Unix application but an Embedded one.</p>
<p>What I do goes like this ::</p>
<p>1 - Send a DNS query (MX type) containing the domain to the current DNS<p>
2 - If the response contains the MX answer , return success from this function<p>
3 - Read the first NS record and copy its IP address to the current DNS , goto 1<p></p>
<p>This may loop a few times and this is expected but what I do not expect is that the response contains NS records of servers named like ns1.blahblah.com but not their IP addresses. In this case, I have to send another query to find the IP of this NS. I have seen this for only 1 e-mail address (1 domain), the other addresses worked without any problem.</p>
<p>Is this normal behaviour ? IMHO, it is a misconfig on the DNS records. Any thoughts ?</p>
<p>Thanks in advance...</p>
http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1750445#17504451Answer by Malkocoglu for List of multicore embedded CPUsMalkocoglu2009-11-17T17:28:40Z2009-11-17T17:34:43Z<p>Are these OK ?</p>
<p><a href="http://www.arm.com/products/CPUs/ARMCortex-A9%5FMPCore.html" rel="nofollow">ARM Cortex-A9 MPCore</a></p>
<p><a href="http://www.ubicom.com/products/mmprocessors.php" rel="nofollow">Ubicom Multimedia uP</a></p>
<p>I did not know about XCore and Propeller, thank you...</p>
http://stackoverflow.com/questions/1736897/what-tool-can-catch-buffer-overflows-in-c/1736928#17369282Answer by Malkocoglu for What tool can catch buffer overflows in C?Malkocoglu2009-11-15T07:52:54Z2009-11-15T07:52:54Z<p>As valgrind works on binary, it did not see anything wrong with this code. Check these (<a href="http://www.thefreecountry.com/programming/debuggers.shtml" rel="nofollow">http://www.thefreecountry.com/programming/debuggers.shtml</a>) static source code analyzers, they should find. If they do not work, PC-lint (<a href="http://www.gimpel.com/html/pcl.htm" rel="nofollow">http://www.gimpel.com/html/pcl.htm</a>) will handle this....</p>
http://stackoverflow.com/questions/1735038/why-not-all-control-paths-return-a-value-is-warning-and-not-an-error/1735054#1735054-1Answer by Malkocoglu for Why "not all control paths return a value" is warning and not an error?Malkocoglu2009-11-14T18:02:53Z2009-11-14T18:15:56Z<p>It is not an error because it may be the intended behaviour. For example, some encryption libraries use uninitialized local data as a step for seeding. As return values are kept in calling-convention and platform specific locations, this may help in some unusual (like the above) situations. In this case, the function returns whatever is left on the register used to return the return value.</p>
http://stackoverflow.com/questions/1692160/fastest-file-access-storage/1692232#16922320Answer by Malkocoglu for Fastest file access/storage?Malkocoglu2009-11-07T06:37:28Z2009-11-07T06:37:28Z<p>First of all, the file size is very small. Any File System will eat something like at least 4 times more space. I mean any file on disk will occupy 4kb for 1kb file. Especially on SSD disks, the 4kb sector will be the norm.</p>
<p>So you have to group several files into 1 physical file. 1024 file in 1 storage file seems reasonable. To locate the individual files in these storage files you have to use some RDBMS (PostgreSQL was mentioned and it is good but SQLite may be better suited to this) or similar structure to do the mapping.</p>
<p>The directory structure suggested by your friend sounds good but it does not solve the physical storage problem. You may use similar directory structure to store the storage files. It is better to name them by using a numerical system.</p>
<p>If you can, do not let them format as FAT32, at least NTFS or some recent File System of Unix flavor. As total size of the files is not that big, NTFS may be sufficient but ZFS is the better option...</p>
http://stackoverflow.com/questions/1688133/how-can-i-test-the-performance-of-a-c-function/1688187#16881870Answer by Malkocoglu for How can I test the performance of a C function?Malkocoglu2009-11-06T15:07:16Z2009-11-06T17:26:46Z<p>Check out <a href="http://www.mcs.anl.gov/~kazutomo/rdtsc.html" rel="nofollow">RDTSC</a> but it is better do it like below.</p>
<p>0 - Call system's Sleep or Yield function so that when it returns, you have a new timeslice</p>
<p>1 - RDTSC</p>
<p>2 - Call your function</p>
<p>3 - RDTSC</p>
<p>If your function is a long running one, you have to use some sort of profiling tool like gprof (it is very easy to use) & Intel's VTune application (which I have not used for a long time). After seeing Art's answer, I changed my mind from gprof to Callgrind. I used only the Memcheck tool of Valgrind in the past and it was a magnificent tool. I have not used Callgrind before but I am sure it is better than gprof...</p>
http://stackoverflow.com/questions/1686101/private-network-as-in-ipv4-question0Private Network (as in IPv4) questionMalkocoglu2009-11-06T08:03:12Z2009-11-06T10:16:29Z
<p>I am working on an embedded TCP/IP4 stack and HTTP/SNMP/SMTP stuff.
It functionally works but I want to make it work faster on LAN.
Because of the Nagle's Algorithm and the delayed TCP-ACK,
The HTTP application seems to work slow even on LAN.</p>
<p>As can be seen on <a href="http://en.wikipedia.org/wiki/IPv4#Private%5Fnetworks" rel="nofollow">http://en.wikipedia.org/wiki/IPv4#Private_networks</a> ,
There are 3 different Private Networks with different bit-block values.</p>
<p>What I will do is that:</p>
<ol>
<li>I will first be sure that I am a LAN member by looking at my own IP</li>
<li>I will look at the dst_ip and check if it belongs to the same LAN as me</li>
</ol>
<p>Are these enough to prove that me and the other party belong to the same LAN ?</p>
<p>Then of course, I will use a simple hack like sending the same packet twice to
speed up the communication. I already tested this and it works but it's
optional right now. I want to turn it into a built-in feature.</p>
<p>Thanks in advance...</p>
http://stackoverflow.com/questions/1674150/null-definition-problem-on-64-bit-system/1674265#16742650Answer by Malkocoglu for NULL definition problem on 64 bit systemMalkocoglu2009-11-04T14:51:48Z2009-11-05T16:51:20Z<p>I previously replied with the below answer. But then I saw that I misinterpreted several information and gave an incorrect answer. Just out of curiosity, I did the same test with VS2008 and I got different results. This is just brain exercise...</p>
<pre>
Why do you need the second one ? Both headers say the same thing.
And it does not even matter if you write 0 or NULL or ((void *)0)
All of them will take 8 bytes.
</pre>
<p>I did a quick test on a 64-bit platform with GCC 4.1.3</p>
<pre><code>#include <string.h>
void str_concat(char *po_buf, int pi_max, ...)
{
strcpy(po_buf, "Malkocoglu"); /* bogus */
}
int main()
{
char buf[100];
str_concat(buf, 100, "abc", 1234LL, "def", 5678LL, "ghi", 2345LL, "jkl", 6789LL, "mno", 3456LL, 0, "pqx", 0);
return 1;
}
</code></pre>
<p>And this is the assembly generated by the compiler...</p>
<pre><code>main:
.LFB3:
pushq %rbp
.LCFI3:
movq %rsp, %rbp
.LCFI4:
subq $192, %rsp
.LCFI5:
leaq -112(%rbp), %rdi
movl $0, 64(%rsp) 0
movq $.LC2, 56(%rsp) "pqx"
movl $0, 48(%rsp) 0
movq $3456, 40(%rsp) 3456LL
movq $.LC3, 32(%rsp) "mno"
movq $6789, 24(%rsp) 6789LL
movq $.LC4, 16(%rsp) "jkl"
movq $2345, 8(%rsp) 2345LL
movq $.LC5, (%rsp) "ghi"
movl $5678, %r9d 5678LL
movl $.LC0, %r8d "def"
movl $1234, %ecx 1234LL
movl $.LC1, %edx "abc"
movl $100, %esi 100
movl $0, %eax
call str_concat
movl $1, %eax
leave
ret
</code></pre>
<p>Notice all the stack displacements are 8 byte...</p>
<pre>
Compiler treats 0 as it was a 32-bit data-type.
Although it does the correct displacement on the
stack pointer, the value pushed should not be 32-bit !
</pre>
<p>I did the same test with VS2008 , the assembly output is as follows :</p>
<pre><code>mov QWORD PTR [rsp+112], 0
lea rax, OFFSET FLAT:$SG3597
mov QWORD PTR [rsp+104], rax
mov QWORD PTR [rsp+96], 0
mov QWORD PTR [rsp+88], 3456 ; 00000d80H
lea rax, OFFSET FLAT:$SG3598
mov QWORD PTR [rsp+80], rax
mov QWORD PTR [rsp+72], 6789 ; 00001a85H
lea rax, OFFSET FLAT:$SG3599
mov QWORD PTR [rsp+64], rax
mov QWORD PTR [rsp+56], 2345 ; 00000929H
lea rax, OFFSET FLAT:$SG3600
mov QWORD PTR [rsp+48], rax
mov QWORD PTR [rsp+40], 5678 ; 0000162eH
lea rax, OFFSET FLAT:$SG3601
mov QWORD PTR [rsp+32], rax
mov r9d, 1234 ; 000004d2H
lea r8, OFFSET FLAT:$SG3602
mov edx, 100 ; 00000064H
lea rcx, QWORD PTR buf$[rsp]
call ?str_concat@@YAXPEADHZZ ; str_concat
</code></pre>
<p>This time compiler generates different code and it treats 0 as an 64-bit data-type (notice the QWORD keyword). Both the value and stack displacement is correct. VS and GCC behaves differently.</p>
http://stackoverflow.com/questions/1629122/why-are-pointers-not-located-on-a-stack/1629305#1629305-2Answer by Malkocoglu for Why are pointers not located on a stack?Malkocoglu2009-10-27T07:52:59Z2009-10-27T07:52:59Z<p>Pointers may or may not be located on the stack as they are also some sort of variables. Note that they are some <strong>not very big</strong> variables. If the CPU/MCU has lots of registers and the compiler optimizes well, you may not see a pointer on the stack, it may very well spend its whole lifetime in registers.</p>
http://stackoverflow.com/questions/1617856/choosing-between-wpf-wxwidgets-win32-api-and-mfc/1618359#16183591Answer by Malkocoglu for Choosing between WPF, wxWidgets, Win32 API and MFCMalkocoglu2009-10-24T16:00:04Z2009-10-24T16:00:04Z<pre>
MFC :: Just say NO for any kind of project.
Win32 :: Well, I can not really recommend using it.
wxWidgets :: I have used it and seen no problem, good choice.
WPF :: I have not and never will use it as it is .Net bound.
FLTK :: Also look at http://fltk.org/, probably has better OpenGL support.
</pre>
http://stackoverflow.com/questions/1578878/catching-stack-overflow-exceptions-in-recursive-c-functions/1579447#15794470Answer by Malkocoglu for Catching "Stack Overflow" exceptions in recursive C++ functionsMalkocoglu2009-10-16T17:50:57Z2009-10-16T18:04:44Z<pre><code>If you use Visual C++
Goto C/C++ , Code Generation
Choose "Both..." in "Basic Runtime Checks"
</code></pre>
<p>Then, run your application...</p>
http://stackoverflow.com/questions/1578714/one-class-with-multiple-implementation-files/1579319#15793194Answer by Malkocoglu for One class with multiple implementation filesMalkocoglu2009-10-16T17:21:25Z2009-10-16T17:21:25Z<p>That is legitimate and it has some (!?) advantages...</p>
<p>If you link your executable with the static library of this class, only the used functions will get in. This is very handy for limited-resource systems.</p>
<p>You can also hide implementation details of certain functions. Two people may implement parts of a class without knowing about each other. Handy for DOD projects.</p>
<p>If you look at any CRT source, you will see the same pattern...</p>
http://stackoverflow.com/questions/1576317/does-code-in-header-file-increases-binary-size/1576407#15764071Answer by Malkocoglu for Does code in header file increases binary size?Malkocoglu2009-10-16T06:21:40Z2009-10-16T06:21:40Z<p>If the functions in the header are declared as <strong>static</strong>, than yes, each module (source file) that includes that header file will store a copy of that function in the object file and the final executable will be bigger in size...</p>
http://stackoverflow.com/questions/1565567/in-which-scenario-it-is-useful-to-use-disassembly-language-while-debugging/1565601#15656013Answer by Malkocoglu for In which scenario it is useful to use Disassembly language while debugging Malkocoglu2009-10-14T11:01:29Z2009-10-14T11:01:29Z<p>1 - We should (I) involve disassembly in debugging as a last resort. Generally, an optimizing compiler generates code that is not trivial to understand to the human eye. Instructions are reordered, some dead code is eliminated, some specific code is inlined, etc, etc. So it is not necessary and not easy when necessary to understand disassembled code. For example, I sometimes look at the disassembly to see if constants are part of the opcode or are stored in const variables.</p>
<p>2 - That piece of code calls a function like getRequiredFields(result, 0, arItem). You have to learn assembly language for the processor you want. For x86, go to www.intel.com and get the manuals of the IA32.</p>
http://stackoverflow.com/questions/1537964/visual-c-equivalent-of-gccs-attribute-packed1Visual C++ equivalent of GCC's __attribute__ ((__packed__))Malkocoglu2009-10-08T13:56:08Z2009-10-09T18:54:45Z
<p>For some compilers, there is a packing specifier for structs, for example ::</p>
<pre>
RealView ARM compiler has "__packed"
Gnu C Compiler has "__attribute__ ((__packed__))"
Visual C++ has no equivalent, it only has the "#pragma pack(1)"
</pre>
<p>I need something that I can put into the <strong>struct</strong> definition.</p>
<p>Any info/hack/suggestion ? TIA...</p>
http://stackoverflow.com/questions/1530418/how-can-i-make-my-program-do-a-true-full-screen-view-in-vc/1530512#15305121Answer by Malkocoglu for How can I make my program do a true full screen view in VC++?Malkocoglu2009-10-07T09:27:33Z2009-10-07T09:27:33Z<p>Check out <a href="http://msdn.microsoft.com/en-us/library/ms632680%28VS.85%29.aspx" rel="nofollow">this function</a> and look at the definition of WS_EX_TOPMOST...</p>
http://stackoverflow.com/questions/1486324/is-it-possible-for-programmer-to-analyze-unknown-code-fast/1488019#14880190Answer by Malkocoglu for Is it possible for programmer to analyze unknown code fast?Malkocoglu2009-09-28T16:30:44Z2009-09-28T16:30:44Z<p>You may also try this ::</p>
<p><a href="http://www.sgvsarc.com/product%5Fcrystalflow.htm" rel="nofollow">http://www.sgvsarc.com/product%5Fcrystalflow.htm</a></p>
http://stackoverflow.com/questions/1411667/c-debugging-in-vis-studio-2008-how-to-break-when-a-variable-becomes-zero/1412490#14124901Answer by Malkocoglu for c++ debugging in vis studio 2008, how to break when a variable becomes zeroMalkocoglu2009-09-11T18:14:33Z2009-09-11T18:14:33Z<p>You have to use one of these debuggers</p>
<p>1 - <a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx</a></p>
<p>2 - The Good Old SoftICE, if you can find it anywhere</p>
<p>3 - <a href="http://www.sysersoft.com/updatelog.html" rel="nofollow">http://www.sysersoft.com/updatelog.html</a></p>
<p>Also check new version OllyDbg (it says it supports hardware breakpoints)</p>
http://stackoverflow.com/questions/1326430/is-there-a-http-header-field-hack-to-tell-the-browser-not-to-pipeline-its-reque0Is there a HTTP header field / hack to tell the browser NOT to pipeline its requests ?Malkocoglu2009-08-25T06:46:41Z2009-08-25T07:05:48Z
<p>I am implementing a minimalistic web server application on a Microcontroller. When I have several images (or CSS/JS) on the web page, the browser creates several connections and fetches them. But the Microcontroller can not catch up with this. Is there a way to tell the browser to stop pipelining and fetch them one by one ?</p>
<p>Note :: "Connection: close" is already in place.</p>
http://stackoverflow.com/questions/1322194/how-to-decompile-a-dll-in-c/1323387#13233871Answer by Malkocoglu for How to decompile a DLL in C++Malkocoglu2009-08-24T16:26:54Z2009-08-24T16:26:54Z<p><a href="http://www.hex-rays.com/decompiler.shtml" rel="nofollow">How about this ?</a></p>
http://stackoverflow.com/questions/723762/programs-causing-static-noise-in-speakers/724280#7242800Answer by Malkocoglu for Programs causing static noise in speakers?Malkocoglu2009-04-07T05:49:19Z2009-04-07T05:49:19Z<p><a href="http://www.erikyyy.de/tempest/" rel="nofollow">tempest</a></p>
<p><a href="http://bellard.org/dvbt/" rel="nofollow">dvbt</a></p>
http://stackoverflow.com/questions/571122/disassemling-a-win32-dll-with-symbols/571135#5711352Answer by Malkocoglu for Disassemling a Win32 DLL with symbolsMalkocoglu2009-02-20T20:36:48Z2009-02-20T20:36:48Z<p>Check out <a href="http://programmerstools.org/taxonomy/term/25" rel="nofollow">THIS</a>. Any of them can work for you but IDA rocks...</p>
http://stackoverflow.com/questions/552999/how-to-read-input-from-a-webcam-in-c/553109#5531095Answer by Malkocoglu for How to read input from a webcam in C++?Malkocoglu2009-02-16T12:05:33Z2009-02-16T12:05:33Z<p>For linux, <a href="http://linuxtv.org/v4lwiki/index.php/Main_Page" rel="nofollow">V4L</a>. AFAIR, BSD uses the same codebase. I do not know about the others...</p>
http://stackoverflow.com/questions/532338/what-to-do-with-star-developers-who-dont-document-their-work/532470#53247014Answer by Malkocoglu for What to do with star developers who don't document their work.Malkocoglu2009-02-10T14:09:12Z2009-02-10T14:09:12Z<p>Play the <strong>bad cop/good cop</strong> sketch you have seen from the movies. Let the management be the bad cop and you be the good cop. Let the managament ask for over-kill documentation and per-minute ZIP backups of his work. But you offer him moderate documentation (by doxygen for example) and usual source control check-ins...</p>
http://stackoverflow.com/questions/531133/should-i-put-many-functions-into-one-file-or-more-or-less-one-function-per-fil/531334#5313341Answer by Malkocoglu for Should I put many functions into one file? Or, more or less, one function per file?Malkocoglu2009-02-10T07:14:38Z2009-02-10T07:14:38Z<p>For the HEADER part, you should combine items into logical groupings and create your HEADER files based on that. This seems and is very logical IMHO.</p>
<p>For the SOURCE part, you should put each function implementation in a separate SOURCE file.
(static functions are exceptions in this case) This may not seem logical at first but remember, a compiler knows about the functions but a linker knows only about the o/obj files and its exported symbols. This may change the size of the output file considerably and this is a very important issue for embedded systems.</p>
<p>Checkout glibc or Visual C++ CRT source tree...</p>
http://stackoverflow.com/questions/519925/deserialize-a-byte-array-to-a-struct/520114#5201141Answer by Malkocoglu for Deserialize a byte array to a structMalkocoglu2009-02-06T12:27:45Z2009-02-06T12:27:45Z<p>I strongly disagree with the idea of reading byte by byte. If you take care of the structure packing in the struct declaration, you can copy into the struct without a problem. For the endiannes problem again reading byte by byte solves the problem but does not give you a generic solution. That method is very lame. I have done something like this before for a similar job and it worked allright without a glitch.</p>
<p>Think about this. I have a structure, I also have a corresponding definition of that structure. You may construct this by hand but I have had written a parser for this and used it for other things as well. </p>
<p>For example, the definition of the structure you gave above is "s i s s". ( s = short , i = int ) Then I give the struct address , this definition and structure packing option of this struct to a special function that deals with the endiannes thing and voila it is done.</p>
<p>SwitchEndianToBig(&header, "s i s s", 4); // 4 = structure packing option</p>
http://stackoverflow.com/questions/506605/simple-object-oriented-2d-graphics-framework-for-use-in-visual-c/506882#5068822Answer by Malkocoglu for Simple object-oriented 2D graphics framework for use in Visual C++?Malkocoglu2009-02-03T12:17:30Z2009-02-03T12:17:30Z<p>Maybe overkill but check out <a href="http://www.box2d.org/" rel="nofollow">this</a>. And also <a href="http://en.wikipedia.org/wiki/Scalable_Vector_Graphics" rel="nofollow">this</a></p>
http://stackoverflow.com/questions/476368/windows-kernel-driver-for-direct-i-o-anyone-been-there/476398#4763980Answer by Malkocoglu for Windows kernel driver for direct I/O - anyone been there?Malkocoglu2009-01-24T17:51:49Z2009-01-24T18:03:08Z<p>You may try the WinIO library on <a href="http://www.internals.com/" rel="nofollow">www.internals.com</a></p>
http://stackoverflow.com/questions/286481/why-doesnt-a-swap-exchange-operator-exist-in-imperative-or-oo-languages-like-c/286538#286538-1Answer by Malkocoglu for Why doesn't a swap / exchange operator exist in imperative or OO languages like C/C++/C#/Java...?Malkocoglu2008-11-13T08:41:40Z2008-12-27T08:02:31Z<p>I think they just forgot to add it :-) Yes, not all CPUs have this kind of instructions, so what ? We have bunch of other things that most CPUs don't have instructions to compute. It would be much easier/clearer and also faster ( by intrinsic ) if we had it !!!</p>
http://stackoverflow.com/questions/391107/how-do-i-find-out-how-much-free-memory-is-left-in-gnu-c-on-linux/391424#3914240Answer by Malkocoglu for How do I find out how much free memory is left in GNU C++ on LinuxMalkocoglu2008-12-24T13:42:10Z2008-12-24T13:42:10Z<p>For the heap part, maybe you are hitting a resource limit. Check out <a href="http://linux.die.net/man/2/getrlimit" rel="nofollow">this</a>.</p>
<p>You may use Valgrind for stack profiling, but what are you going to do with it ? Stack is not like Heap. You say, you want to do this for debugging purposes. If your program runs fine, then there is no stack problem (related to its size at least).</p>
<p>You may set the stack size for the threads you created and inspect the stack pointer value by looking at the local variable (which must not be optimized-out) addresses. Just do some math by using the initial size, initial stack pointer value and current stack pointer value, you will get some nice numbers. Just do not forget to find out the stack direction first. This may change from platform to platform.</p>
<p>I think if you care this much for heap usage, then your program probably leaks memory. In this case, Valgrind can point you to the right direction. <a href="http://valgrind.org/" rel="nofollow">Valgrind</a></p>
http://stackoverflow.com/questions/1720987/dns-answer-returning-ns-records-without-ip-addresses-is-this-normalComment by Malkocoglu on DNS answer returning NS records without IP addresses , is this normal ?Malkocoglu2009-11-25T07:26:27Z2009-11-25T07:26:27Z@caf: Thank you, I will add this option. If the customer knows about SMTP, they will set this option as they will. Otherwise, I will behave the other way around. I fixed this MX-DNS thing, but it takes several (5-6) rounds to get the needed information...http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1750445#1750445Comment by Malkocoglu on List of multicore embedded CPUsMalkocoglu2009-11-18T21:29:08Z2009-11-18T21:29:08ZThis is very good news, really...http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1750445#1750445Comment by Malkocoglu on List of multicore embedded CPUsMalkocoglu2009-11-18T11:24:53Z2009-11-18T11:24:53ZWell, Atom is good but it lacks any of the internal peripherals like USB, Ethernet, RTC, InternalFlash, InternalRAM (not cache), ADC, DAC, I2C, I2S, SPI, UART, SDIO, SD/MMC, PWM, Timer, WatchDog, Capture, Compare, CAN...http://stackoverflow.com/questions/1750374/measure-cpu-ram-usage-of-a-program/1750391#1750391Comment by Malkocoglu on Measure CPU / RAM usage of a programMalkocoglu2009-11-17T18:25:01Z2009-11-17T18:25:01ZIt has been harsh on VTune. It is not suitable for this kind of task but it is not "top" either...http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1750445#1750445Comment by Malkocoglu on List of multicore embedded CPUsMalkocoglu2009-11-17T18:00:00Z2009-11-17T18:00:00ZI did not know Thread-core existed since 70's. Must be some IBM chip I think...http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1750445#1750445Comment by Malkocoglu on List of multicore embedded CPUsMalkocoglu2009-11-17T17:58:25Z2009-11-17T17:58:25ZXMOS XS1 CPU has lots of instructions, even CRC32 instruction !?!http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1750445#1750445Comment by Malkocoglu on List of multicore embedded CPUsMalkocoglu2009-11-17T17:40:10Z2009-11-17T17:40:10ZIt was recently announced (<a href="http://en.wikipedia.org/wiki/OMAP#OMAP4" rel="nofollow">en.wikipedia.org/wiki/OMAP#OMAP4</a>). I must add that ARM is a very good architecture. x86 seems very primitive compared to ARM instruction set. I do not know much about Ubicom but its 12-thread (!?) architecture (HT-like maybe) is interesting...http://stackoverflow.com/questions/1746344/illegal-instruction-in-asm-lock-cmpxchg-dest-srcComment by Malkocoglu on Illegal instruction in ASM: lock cmpxchg dest, srcMalkocoglu2009-11-17T09:40:39Z2009-11-17T09:40:39ZWhy don't you just use a futex ? (<a href="http://en.wikipedia.org/wiki/Futex" rel="nofollow">en.wikipedia.org/wiki/Futex</a>) With just 6 hours assembly, you can not guarantee that this code will work without a glitch on every processor out there. See <a href="http://timetobleed.com/mysql-doesnt-always-suck-this-time-its-amd/" rel="nofollow">timetobleed.com/mysql-doesnt-always-suck-this-tim…</a>http://stackoverflow.com/questions/1736897/what-tool-can-catch-buffer-overflows-in-c/1736928#1736928Comment by Malkocoglu on What tool can catch buffer overflows in C?Malkocoglu2009-11-16T10:12:26Z2009-11-16T10:12:26ZI have not heard of cppcheck before. Oldest release was on 2007, so it is relatively new. Especially when compared to PC-Lint...http://stackoverflow.com/questions/1437856/good-tools-to-understand-reverse-engineer-a-top-layer-network-protocolComment by Malkocoglu on Good tools to understand / reverse engineer a top layer network protocolMalkocoglu2009-11-16T09:59:00Z2009-11-16T09:59:00ZIf the encryption scheme is SSL/TLS then you may use <a href="http://crypto.stanford.edu/~eujin/sslsniffer/index.html" rel="nofollow">crypto.stanford.edu/~eujin/sslsniffer/…</a> to analyse the packets on the wire. If it is some home-grown encryption, you are out of lock...http://stackoverflow.com/questions/1735038/why-not-all-control-paths-return-a-value-is-warning-and-not-an-error/1735054#1735054Comment by Malkocoglu on Why "not all control paths return a value" is warning and not an error?Malkocoglu2009-11-16T07:27:51Z2009-11-16T07:27:51Z@Jeremy Friesner: You can also look at the link I have written Jonathan about...http://stackoverflow.com/questions/1735038/why-not-all-control-paths-return-a-value-is-warning-and-not-an-error/1735054#1735054Comment by Malkocoglu on Why "not all control paths return a value" is warning and not an error?Malkocoglu2009-11-14T21:35:15Z2009-11-14T21:35:15ZWe are not safe even with hardware (True, they say) RNG systems. <a href="http://www.lightbluetouchpaper.org/2009/09/08/tuning-in-to-random-numbers/" rel="nofollow">lightbluetouchpaper.org/2009/09/…</a>http://stackoverflow.com/questions/1735038/why-not-all-control-paths-return-a-value-is-warning-and-not-an-error/1735054#1735054Comment by Malkocoglu on Why "not all control paths return a value" is warning and not an error?Malkocoglu2009-11-14T21:20:53Z2009-11-14T21:20:53Z@Shailesh: Unfortunately, it is very hard to have properly generated random numbers (<a href="http://www.springerlink.com/content/kkpghbg30r1xce4m/" rel="nofollow">springerlink.com/content/kkpghbg30r1xce4m/…</a>). I also remember some cryptographer attacking the Intel hardware RNG on their chipsets by using some other hardware on that chip (maybe the sound card, i do not remember) so that he can keep the temperature of that area high enough that the RNG produced little entropy (as it relied on thermal noise)...http://stackoverflow.com/questions/1735038/why-not-all-control-paths-return-a-value-is-warning-and-not-an-error/1735054#1735054Comment by Malkocoglu on Why "not all control paths return a value" is warning and not an error?Malkocoglu2009-11-14T21:11:35Z2009-11-14T21:11:35Z@Shailesh: I am not a fan of uninitialized data structures. I just remembered that, there was an occasion some programmers relied on this thing...http://stackoverflow.com/questions/1735038/why-not-all-control-paths-return-a-value-is-warning-and-not-an-error/1735054#1735054Comment by Malkocoglu on Why "not all control paths return a value" is warning and not an error?Malkocoglu2009-11-14T20:55:07Z2009-11-14T20:55:07ZIt was mistaken for a bug and caused big problem...