Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Type
/
to search
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
sysprog21
/
linmo
Public
Notifications
You must be signed in to change notification settings
Fork
37
Star
113
Code
Issues
10
Pull requests
10
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Single-Hart O(1) Enhancement
- #35
#35
Closed
vicLin8712
wants to merge 26 commits into
sysprog21:main
sysprog21/linmo:main
from
vicLin8712:o1-sched
vicLin8712/linmo:o1-sched
Copy head branch name to clipboard
Conversation
Commits
26
(26)
Checks
Files changed
Closed
Single-Hart O(1) Enhancement
#35
vicLin8712
wants to merge 26 commits into
sysprog21:main
sysprog21/linmo:main
from
vicLin8712:o1-sched
vicLin8712/linmo:o1-sched
Copy head branch name to clipboard
Commits
Commits on Oct 30, 2025
Add sched_t to kcb for O(1) scheduler support
Show description for 279364e
vicLin8712
committed
279364e
View commit details
Copy full SHA for 279364e
Browse repository at this point
Add list_unlink() for safe node removal from ready queue
Show description for 56c1926
vicLin8712
committed
56c1926
View commit details
Copy full SHA for 56c1926
Browse repository at this point
Add three marcos for ready queue bitmap operation
Show description for 6bd43f1
vicLin8712
committed
6bd43f1
View commit details
Copy full SHA for 6bd43f1
Browse repository at this point
Commits on Nov 7, 2025
Refactor sched_enqueue_task() for O(1) scheduler support
Show description for 75b4eeb
vicLin8712
committed
75b4eeb
View commit details
Copy full SHA for 75b4eeb
Browse repository at this point
Implement sched_dequeue_task() to dequeue task from ready queue
Show description for 398c4c0
vicLin8712
committed
398c4c0
View commit details
Copy full SHA for 398c4c0
Browse repository at this point
Refactor mo_task_spawn() for O(1) scheduler support
Show description for 102a935
vicLin8712
committed
102a935
View commit details
Copy full SHA for 102a935
Browse repository at this point
Refactor scheduler to RR cursor-based O(1) design
Show description for 8f231a4
vicLin8712
committed
8f231a4
View commit details
Copy full SHA for 8f231a4
Browse repository at this point
Add ready queue dequeue path in mo_task_suspend()
Show description for b3ef921
vicLin8712
committed
b3ef921
View commit details
Copy full SHA for b3ef921
Browse repository at this point
Add ready queue dequeue path in mo_task_cancel()
Show description for 90c9e6a
vicLin8712
committed
90c9e6a
View commit details
Copy full SHA for 90c9e6a
Browse repository at this point
Add sched_enqueue_task() in mo_task_resume()
Show description for a75e344
vicLin8712
committed
a75e344
View commit details
Copy full SHA for a75e344
Browse repository at this point
Add ready queue enqueue path in mo_task_wakeup()
Show description for 7099067
vicLin8712
committed
7099067
View commit details
Copy full SHA for 7099067
Browse repository at this point
Add sched_migrate_task() helper
Show description for f614c82
vicLin8712
committed
f614c82
View commit details
Copy full SHA for f614c82
Browse repository at this point
Use mo_task_migration() in mo_task_priority()
Show description for d520a97
vicLin8712
committed
d520a97
View commit details
Copy full SHA for d520a97
Browse repository at this point
Add idle task and initialization API
Show description for 28961b8
vicLin8712
committed
28961b8
View commit details
Copy full SHA for 28961b8
Browse repository at this point
Add sched_switch_to_idle() helper
Show description for ec07239
vicLin8712
committed
ec07239
View commit details
Copy full SHA for ec07239
Browse repository at this point
Add sched_switch_to_idle() helper in the scheduler
Show description for 3474f1a
vicLin8712
committed
3474f1a
View commit details
Copy full SHA for 3474f1a
Browse repository at this point
Add idle_task_init() call in main()
Show description for 8291d5a
vicLin8712
committed
8291d5a
View commit details
Copy full SHA for 8291d5a
Browse repository at this point
Refactor launch sequence in main() for scheduler initialization
Show description for 41df658
vicLin8712
committed
41df658
View commit details
Copy full SHA for 41df658
Browse repository at this point
Remove first-task binding from task initialization
Show description for e04881d
vicLin8712
committed
e04881d
View commit details
Copy full SHA for e04881d
Browse repository at this point
Add De Bruijn LUT for future O(1) priority selection
Show description for 8096532
vicLin8712
committed
8096532
View commit details
Copy full SHA for 8096532
Browse repository at this point
Implement De Bruijn-based top priority helper
Show description for 05ebd38
vicLin8712
committed
05ebd38
View commit details
Copy full SHA for 05ebd38
Browse repository at this point
Use De Brujin-based top priority helper in scheduler
Show description for 589b0e7
vicLin8712
committed
589b0e7
View commit details
Copy full SHA for 589b0e7
Browse repository at this point
Add dequeuing ready queue path in _sched_block()
Show description for 98fd426
vicLin8712
committed
98fd426
View commit details
Copy full SHA for 98fd426
Browse repository at this point
Make sched_wakeup_task() globally visible
Show description for 1abd962
vicLin8712
committed
1abd962
View commit details
Copy full SHA for 1abd962
Browse repository at this point
Add sched_wakeup_task() in mo_sem_signal()
Show description for 1c68d20
vicLin8712
committed
1c68d20
View commit details
Copy full SHA for 1c68d20
Browse repository at this point
Commits on Nov 17, 2025
Add dequeuing ready queue path in mo_task_delay()
Show description for 5850872
vicLin8712
committed
5850872
View commit details
Copy full SHA for 5850872
Browse repository at this point
You can’t perform that action at this time.