-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Tracking Issue for restructuring sys_common #84187
Copy link
Copy link
Closed
Labels
A-technical-debtArea: Internal cleanup workArea: Internal cleanup workC-cleanupCategory: PRs that clean code up or issues documenting cleanup.Category: PRs that clean code up or issues documenting cleanup.C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCE-help-wantedCall for participation: Help is requested to fix this issue.Call for participation: Help is requested to fix this issue.T-libsRelevant to the library team, which will review and decide on the PR/issue.Relevant to the library team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
A-technical-debtArea: Internal cleanup workArea: Internal cleanup workC-cleanupCategory: PRs that clean code up or issues documenting cleanup.Category: PRs that clean code up or issues documenting cleanup.C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCE-help-wantedCall for participation: Help is requested to fix this issue.Call for participation: Help is requested to fix this issue.T-libsRelevant to the library team, which will review and decide on the PR/issue.Relevant to the library team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
There is a lot of interdependence between
std,sysandsys_common, this is becausesys_commoncontains several types of code:std::sys_common::mutex)std::sys_common::alloc)std::sys_common::poison)In order to reduce the interdependence,
sys_commonwill be restructured:sys::commonis introduced; code that is shared by all platforms will be moved fromsys_commonto this new module.sysand shared using#[path]instead.sys_commonto the appropriate place instd.Ideally the end-result of this is
sys_commonagain only containing platform-independent abstractions on top ofsys.