| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 years, 8 months |
| seen | 15 hours ago | |
| stats | profile views | 512 |
|
20h |
awarded | Nice Answer |
|
1d |
comment |
wget command to download a file and save as a different filenamewget -o will output log information to a file. wget -O will output the downloaded content. man wget will tell you all of this and more. |
|
1d |
answered | How to list all files and their commit SHAs in a repo |
|
Apr 30 |
comment |
Is this a good reason to use alloca? The stack is bouncing around with variable allocations. What could possibly lead you to believe that they would be in an unshared state? |
|
Apr 30 |
comment |
Is this a good reason to use alloca? Ben: en.wikipedia.org/wiki/MESI_protocol . I don't know that further discussion here will be productive. |
|
Apr 30 |
comment |
Is this a good reason to use alloca? The SMP logic doesn't know the stack is "local". All it knows is that the CPU is using different lines than it was. And again your use of "pages" leads me to believe you're misunderstanding the issue -- we're talking about cache hardware, not MMU behavior. |
|
Apr 30 |
comment |
Is this a good reason to use alloca? Ben: it's not cache footprint, it's the cache line state. Storing to or loading from an L1 cache line requires no traffic outside the local CPU as long as the line is in an E state. So calling a leaf function on top of those lines can be fast, where calling the same function after dropping 14k on the stack will not. Instead, the CPU has to first broadcast the operation to all the other CPUs to allow their snoop logic to see it. For rapidly-called leaf functions, this can be non-trivial. |
|
Apr 30 |
answered | Is this a good reason to use alloca? |
|
Apr 30 |
comment |
Pre-fork model in C Note also that this solution will attempt to "wake up" a process that happens to be blocked on a long-running operation, even if there is an idle process available that the kernel would know about. |
|
Apr 30 |
comment |
Pre-fork model in C This is the cleaner answer. All of the four processes wait symmetrically on the same file descriptor, and it relies on the kernel to decide which one to wake up. |
|
Apr 30 |
comment |
Pre-fork model in C The "wakeup signal" here is senseless. The children should simply call accept() themselves. Multiple processes can be blocked on accept() on the same file descriptor. The kernel will return from the syscall in exactly one of them. |
|
Apr 25 |
comment |
git ignore modified file so i can change branch This won't solve your problem directly, but this is precisely why derived files don't belong in source control. The .css files shouldn't have been checked in to begin with. |
|
Apr 20 |
awarded | c++ |
|
Apr 19 |
comment |
How to pass and execute anonymous function as parameter in C++11? Using a template also won't work if you want to pass a pre-existing function or need to interoperate with C code. Not really interested in the C++ purity side of the argument; this was simply a bit of the language I thought was being missed by the existing answers. |
|
Apr 19 |
answered | How to pass and execute anonymous function as parameter in C++11? |
|
Apr 17 |
answered | How to avoid git from showing merge messages on editor? |
|
Mar 29 |
comment |
How to get locally my repository created on a shared host? That clone command can't be the one you used, because it tries to clone a local directory named ./ftp.myomain.ro. Can you please update the bug with actual instructions to reproduce your failure? |
|
Mar 22 |
answered | Connecting to host by SSH client in Linux by proxy |
|
Mar 16 |
answered | inode parameter in driver open |
|
Mar 16 |
comment |
How can I replace default boost with my compiled boost in Linux? Are you asking how to use LD_LIBRARY_PATH to change the default search order? Note that most of boost is "header only" however, and if your program is compiling you might not need that. |