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)
Thu, Mar 19, 8:21 AM
Unknown Object (File)
Wed, Mar 18, 4:47 AM
Unknown Object (File)
Fri, Mar 13, 6:17 AM
Unknown Object (File)
Fri, Mar 13, 6:11 AM
Unknown Object (File)
Mon, Mar 9, 5:29 PM
Unknown Object (File)
Mon, Mar 9, 12:08 PM
Unknown Object (File)
Feb 11 2026, 1:32 AM
Unknown Object (File)
Feb 11 2026, 1:31 AM

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_*