diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-09-21 19:29:13 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-09-21 19:29:13 +0200 |
commit | 366cce74d2aa2e5753d8787d415b745fd57fda04 (patch) | |
tree | e16164e66d383011db713999f5beb364913008cd /support | |
parent | 455c7622835d16c79e49fe75b8d3a1ae59a3d0ee (diff) | |
download | glibc-366cce74d2aa2e5753d8787d415b745fd57fda04.zip glibc-366cce74d2aa2e5753d8787d415b745fd57fda04.tar.gz glibc-366cce74d2aa2e5753d8787d415b745fd57fda04.tar.bz2 |
support: Add valgrind instructions to <support/fuse.h>
Replacing an outdated comment (namespace setup is now handled by
support_fuse_init).
Diffstat (limited to 'support')
-rw-r--r-- | support/fuse.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/support/fuse.h b/support/fuse.h index 4c365fb..1c862be 100644 --- a/support/fuse.h +++ b/support/fuse.h @@ -16,8 +16,10 @@ License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ -/* Before using this functionality, use support_enter_mount_namespace - to ensure that mounts do not impact the overall system. */ +/* To run FUSE tests under valgrind, pass the + --sim-hints=fuse-compatible option to valgrind. This option tells + valgrind that additional system calls effectively call back into + the current program. */ #ifndef SUPPORT_FUSE_H #define SUPPORT_FUSE_H |