|
Registered User
|
|
7h |
answered | How to Read same file in thread while other thread is writing text in the same file |
|
7h |
comment |
How to Read same file in thread while other thread is writing text in the same file It simply isn't true that you cannot read and write from/to the same file at the same time. There are many streaming applications that use shared open files - e.g pause live tv - where video is being recorded and played at the same time with, possibly, a short delay. The writer does not even need to know that somebody is reading. |
|
7h |
comment |
How to Read same file in thread while other thread is writing text in the same file Have you tried it? - and did you have a problem? |
|
2d |
comment |
What is the difference between POSIX sockets and BSD sockets? www.openss7.org/papers/strsock/sockimp.pdf |
|
2d |
answered | word alignment of 4 byte for XOR operations |
|
Dec 16 |
comment |
Are there any good reference implementations available for command line implementations for embedded systems? I was going to recommend the same thing. How directly applicable it is depends on how sophisticated your embedded platform is. |
|
Dec 13 |
accepted | Inspiration on how to build a great command line interface |
|
Dec 12 |
awarded | ● Nice Answer |
|
Dec 12 |
answered | Is there a way to produce a binary diff on two byte arrays in c# .net? |
|
Dec 12 |
answered | Inspiration on how to build a great command line interface |
|
Dec 12 |
accepted | Difference between %i and %d in printf() for C and C++ |
|
Dec 12 |
answered | Difference between %i and %d in printf() for C and C++ |
|
Dec 9 |
answered | Is writing to a socket an arbitrary limitation of the sendfile() syscall? |
|
Dec 5 |
comment |
Introduction to GUI programming with c +1 The question includes "What would you recommend as start for a beginner?" Therefore it is perfectly good advice to throw in a caveat in addition to giving a valid answer to the rest of the question. |
|
Dec 5 |
comment |
When you decide to stop writing code, what will be your next move? Duplicate of "When you decide to stop breathing, what will be your next move?" |
|
Dec 5 |
comment |
short type variable automatically extended to integer type? I had just almost finished typing almost word for word the same except to say that the compiler probably issued a warning to say that 0xFFFC wasn't a valid short value - warnings are there for a reason - do not ignore them. |
|
Dec 3 |
comment |
Switching jobs - How to learn new technologies and get to work in them Agreed - in any job there should be opportunities to try other languages and techniques out - automating various operations, building test servers, test data analysis etc. I program in C for embedded devices but frequently use C++/QT for various PC programs and python, perl, javascript for web utilites and automating tasks. If you really are a code monkey (software simian?) using one language then get out fast. |
|
Dec 2 |
accepted | How can I test my driver is loaded, and then access my driver functions from the linux kernel? |
|
Dec 1 |
comment |
Fastest socket method for a lot of data between a lot of files Are you sending the same files to all the clients or are different files sent to different clients? |
|
Dec 1 |
comment |
Set timeout for winsock recvfrom SO_RCVTIMEO isn't very portable - what platform are you using? |
|
Nov 30 |
comment |
Dealing with system time changes If using clock_gettime() then you need to specify CLOCK_MONOTONIC - if supported. Using the normal option - CLOCK_REALTIME - will cause inaccuracies if the system clock is changed. |
|
Nov 29 |
comment |
console UI tool for resolving merge conflicts in git… like vimdiff but ‘easier’ Which platform? |
|
Nov 29 |
answered | Java: Code Review: Binary Search |
|
Nov 29 |
comment |
Ensuring a file is flushed when file created in external process (Win32) Do you actually have a problem, or are you thinking (imagining?) that there may be one? |
|
Nov 29 |
comment |
Ensuring a file is flushed when file created in external process (Win32) Agreed - the data doesn't need to go to disk, it will be read from cache. Once the external process is finished you can assume that the data is available. |
|
Nov 27 |
answered | What is the most interesting server name you have seen? |
|
Nov 25 |
comment |
asynchronous memcpy in linux ? @Sunny Shah, You should be looking at a zero copy solution perhaps using shared memory? Why are you copying such big chunks of memory around? |
|
Nov 23 |
answered | What is the shortest source code you have seen to do a complex task? |
|
Nov 23 |
revised |
Can you #define a comment in C? Oops - that'll teach me not to rush try and get in first. |
|
Nov 23 |
comment |
Can you #define a comment in C? I think that that is possibly one of the worst pieces of advice I have ever read. |
|
Nov 23 |
answered | Can you #define a comment in C? |
|
Nov 23 |
awarded |
● |
|
Nov 21 |
comment |
how to automatically start a PC using c What if hibernate was used instead of total shut down; would this avoid the BIOS? |
|
Nov 20 |
comment |
Initialising arrays in C++ What have you actually measured in the -O2 case? Probably that the optimizer can entirely remove code that has no effect - so what? How is that helpful or relevant? |
|
Nov 19 |
comment |
Recovering from stack overflow on Mac OS X Are you constrained to use the process stack as the VM stack, or does your VM implement its own stack? |
|
Nov 19 |
comment |
Client/Server: Integer always received as 1 (C-programming) I suspect that this is the cause of the problem. Even if it isn't it is still plain wrong. |
|
Nov 17 |
comment |
Inconsistent results from printf with long long int? Most compilers will give a warning for the error you made - did you just ignore it? Or do you not have warnings turned on? They are there for a reason. |
|
Nov 17 |
comment |
Is there a name / set for characters that can be typed using a standard english keyboard? My english keyboard has lots of characters that are not ASCII ¬ ` ¦ And - being a proper english keyboard - it also has £ which is not ASCII. |
|
Nov 17 |
comment |
Is there a name / set for characters that can be typed using a standard english keyboard? I wasn't aware that there was a "standard english keyboard" - for example different keyboards are used in the US and Britain. |
|
Nov 17 |
accepted | Kernel threads and POSIX library |
|
Nov 16 |
answered | Should I document my private methods? |
|
Nov 15 |
answered | Build management in C++ & good IDEs on Linux |
|
Nov 15 |
comment |
Pass enums by value or reference? enums are often used as a way of defining constants, RED, BLUE, ON, OFF etc. If you think about how you would pass a constant to your function then you could probably come to the solution to your question yourself. |
|
Nov 15 |
answered | C Prototype scope |
|
Nov 14 |
comment |
Math Overflow — Handling Large Numbers As others have pointed out - you don't need big number support for what you are trying to do. But if you do want to use them, many modern(ish) languages have big numbers built in. Libraries exist for many others (C, C++ etc). What language are you using or thinking of using? |
|
Nov 14 |
comment |
Something wrong with my gdb or KDevelop IDE? Have you tried doing what it said you have to do? - Check the settings on /dev/tty* and /dev/pty* As root you may need to "chmod ug+rw" tty* and pty* devices and/or add the user to the tty group using "usermod -G tty username". |
|
Nov 12 |
answered | how bad is it to use dynamic datastuctures on an embedded system? |
|
Nov 12 |
accepted | x86 Assembly: What’s the main prologue and epilogue? |
|
Nov 12 |
comment |
Can i execute any c made prog without any os platform??? I've run c on systems (8051 based) with as little as 128 bytes of RAM (that's 128 bytes, not kilobytes or megabytes) and that included the stack space. Obviously no room for an OS there. |
|
Nov 12 |
answered | x86 Assembly: What’s the main prologue and epilogue? |
