Search Results

1
vote

execv() and const-ness

const is a C++ thing - execv has taken char * arguments since before C++ existed. You can use const_cast instead of copying, because execv doesn't actually modify its arguments. You might …
0
votes

Java memory consumption, “top” and HP-Ux

The JVMs might just have different default parameters. The heap will grow to the size that you have configured to let it. The default on the Sun VM is a certain percentage of the RAM in the machi …