Page MenuHomeFreeBSD

[NFC] Use C++ features and headers in C++ code instead of C
Needs ReviewPublic

Authored by gfunni234_gmail.com on Aug 24 2021, 6:10 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 19, 2:46 PM
Unknown Object (File)
Wed, May 13, 2:05 AM
Unknown Object (File)
Tue, May 12, 10:52 PM
Unknown Object (File)
Tue, May 12, 1:22 AM
Unknown Object (File)
Tue, May 12, 1:21 AM
Unknown Object (File)
Wed, May 6, 4:12 AM
Unknown Object (File)
Apr 28 2026, 11:24 AM
Unknown Object (File)
Apr 27 2026, 3:06 PM

Details

Reviewers
imp
jrtc27
dim
Summary

We don’t need to use integers as booleans or the C standard headers when we have the C++ standard headers and booleans

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

It's written this way because our C++ is deliberately very C-like. And it avoids all the std:: everywhere that's just a mess. Are there any useful changes you're making here other than changing it to match your personal views on style? The only somewhat useful thing I can see is changing some ints to bools, but even then it's all in tests so I really don't care all that much about a tiny increase in memory footprint.

usr.sbin/pmc/cmd_pmc_summary.cc
184

It's already applied to the prototype, just like all the other cmd_pmc_*