If this is true, then there may not actually be a memory leak. There is definitely high levels of workload on occasaions. Data comes in in spurts... there'll be nothing for periods of time, then...
On a linux system at work, there is this one particular process that many of us have observed on occasion that will continue to grow in memory during specific processing periods, and never shrink. ...
I'm still having difficulty with this conversation between this one code reviewer and myself. I think I'm going to simply stop trying to convince him and just move on.
I agree with this 100%. Sometimes I feel like I'm talking to a wall on some of these issues though. One of the arguments used by this "primary" code reviewer was "...the maintenance burden of using...
Thanks for the link. One question though, under the notes section it says... "Writing to the character array accessed through data is undefined behavior." Does this apply even to the C++11 standard...
Well, unless we were using a compiler that supports C++11, I am reluctant to use that construct regardless. And yes, I agree it's better to be safe than sorry. That's why I moved the contents into a...
Thank you for the reply. However, I was actually looking for quotes from the standards previous to C++11 since we are using older gnu compilers and have no intention on upgrading any time soon. ...
I need some help arguing a point. Here's the situation. I recently wrote some code that required making several calls into a COTS API library where the function calls required one of the arguments...
I did have one thought on this later that evening. I was actually running both the client and server on the same machine and had established socket connections for both the client and server to...
It's been several years since I've done any socket programming, so when I started messing with something recently I became very confused by some affects occurring that I thought should have worked. ...
I'm still stuck on this. I've tried to post this on the boost users email list but am getting no responses there either. Does anyone have any thoughts on this at all. Thank you for your help.
I'm in the process of learning python, and embedding python into C++. I know very little about python so I've been playing around with many different types of interfaces and API's, with varying...
I agree with GCDEF, it would be much easier to just make it an instance. If you insist on using pointers, you'll have to allocate them. You'll do this in your constructors (which you have neglected...
Sorry for not getting back to you sooner on this (just been extremely busy lately). Anyway, thanks for the info, it worked perfect. I didn't realize you could directly specify the library name in...
On a linux system, is it possible to link with both static and dynamic libraries (different libraries, of course) at the same time? I used to do this on a Solaris platform but have been unsuccessful...
Thank you for the response. Although my post wasn't my exact scenario, I tried to simplify it as much as possible to get to the root of the problem. And yes, your answer not only solved my post,...
Thanks for your responses but I think I figured out what the problem was. I don't know why it appears to be doing this, but it looks like it's completely ignoring the LD_LIBRARY_PATH environment...
Are there any purify experts out there? I’m trying to run a newly installed version of purify on a Solaris 8 system and am having problems. I’ve tried to go to the IBM site to get help on this, but...
Does anyone know how to "programmatically" obtain the size of a process in memory on a Solaris 8 operating system? What I'm trying to do is obtain something similar to what you get from the "top" or...
Without going into a lot of detail, since I don't know much yet, I don't believe the program mindlessly reads every file it can get its hands on. The data read in is from flat files that were...