Skip to content

Commit

Permalink
Restore typical things
Browse files Browse the repository at this point in the history
Signed-off-by: Klimenty Tsoutsman <[email protected]>
  • Loading branch information
tsoutsman committed Jul 27, 2023
1 parent 3a382a0 commit 3b41d3f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kernel/cls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "cls"
version = "0.1.0"
authors = ["Klim Tsoutsman <[email protected]>"]
description = "Library for defining CPU-local variables"
edition = "2021"

[dependencies]
Expand Down
2 changes: 2 additions & 0 deletions kernel/cls/cls_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "cls_macros"
version = "0.1.0"
authors = ["Klim Tsoutsman <[email protected]>"]
description = "Macros for the `cls` crate"
edition = "2021"

[lib]
Expand Down
2 changes: 2 additions & 0 deletions kernel/cls/cls_macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Exports the [`cpu_local`] macro.
#![feature(proc_macro_diagnostic, proc_macro_span, let_chains)]

use convert_case::{Case, Casing};
Expand Down
4 changes: 4 additions & 0 deletions kernel/cls/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
//! A library for defining CPU-local variables.
//!
//! See [`cpu_local`] for more details.
#![no_std]

extern crate alloc;
Expand Down
2 changes: 2 additions & 0 deletions kernel/cpu_local/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "cpu_local"
version = "0.1.0"
authors = ["Kevin Boos <[email protected]>"]
description = "Support for accessing CPU-local storage via per-CPU variables"
edition = "2021"

[dependencies]
Expand Down
2 changes: 2 additions & 0 deletions kernel/preemption/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "preemption"
version = "0.1.0"
authors = ["Kevin Boos <[email protected]>", "Klim Tsoutsman <[email protected]>"]
description = "Handles enabling and disabling preemption for each CPU core"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit 3b41d3f

Please sign in to comment.