libstdc++: testsuite: why cast getpid result
Add a comment next to the getpid call to explain why the typecast is needed. for libstdc++-v3/ChangeLog * testsuite/util/testsuite_fs.h (nonexistent_path): Explain why we need the typecast.
This commit is contained in:
parent
543828e79b
commit
bd2d0aab4d
1 changed files with 2 additions and 1 deletions
|
@ -162,7 +162,8 @@ namespace __gnu_test
|
|||
if (file.length() > 64)
|
||||
file.resize(64);
|
||||
// The combination of random counter and PID should be unique for a given
|
||||
// run of the testsuite.
|
||||
// run of the testsuite. N.B. getpid() returns a pointer type on vxworks
|
||||
// in kernel mode.
|
||||
file += std::to_string((unsigned long) ::getpid());
|
||||
p = std::move(file);
|
||||
if (test_fs::exists(p))
|
||||
|
|
Loading…
Add table
Reference in a new issue