| Summary: | FreeBSD: add getgroups and setgroups wrappers | ||
|---|---|---|---|
| Product: | [Developer tools] valgrind | Reporter: | Paul Floyd <pjfloyd> |
| Component: | general | Assignee: | Paul Floyd <pjfloyd> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | FreeBSD | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Even easier, the new syscall has just a semantic change. It uses exactly the same interface as the existing generic wrapper. commit 128017143a942263542a1d87132f3bae782ce645 Author: Paul Floyd <pjfloyd@wanadoo.fr> Date: Sun Aug 31 16:32:20 2025 +0200 Bug 508958 - FreeBSD: add getgroups and setgroups wrappers |
Don't look complicated 595 AUE_GETGROUPS STD|CAPENABLED { int getgroups( int gidsetsize, _Out_writes_opt_(gidsetsize) gid_t *gidset ); } 596 AUE_SETGROUPS STD { int setgroups( int gidsetsize, _In_reads_(gidsetsize) const gid_t *gidset ); }