]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: testsuite: why cast getpid result
authorAlexandre Oliva <oliva@adacore.com>
Tue, 5 Jul 2022 22:07:32 +0000 (19:07 -0300)
committerAlexandre Oliva <oliva@gnu.org>
Tue, 5 Jul 2022 22:07:32 +0000 (19:07 -0300)
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.

libstdc++-v3/testsuite/util/testsuite_fs.h

index 25f8f734dc7924dd9a00365f1359e0a1c37b1970..0e28385e99acace1ceaaaed3d5f8ea86e416e5dd 100644 (file)
@@ -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))