I have a program that reads in a long list of words from a text file with command line redirection. No file streams.
It takes the data in using getline(cin, string)
and reads it into a vector. My program then processes the data. It also uses dynamic memory (not sure if this fact is relevant).
Why am I getting this error:
Warning: Your program used more system time (0.001 sec) than user time (0.000 sec).
This may be due to excessive I/O, overly frequent time measurement
(via getrusage for example), or unnecessary system calls.
Your code is reading and writing files, which results in
open()
,read()
, andwrite()
system calls among others. "User" and "System" time are CPU time spent in userspace and system/kernelspace, respectively. The kernel can also make use of multiple CPUs, so having far higher "CPU time" than "real time" isn't anything weird.No idea what profiling tool you're running to tell you that, as Google comes up with nothing, but, the tool is wrong. There is no problem here.