aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/include
Commit message (Collapse)AuthorAgeFilesLines
* Mouse codeAlex Auvolat2017-04-241-0/+1
|
* Use elf symbol table instead of map file for kernelAlex Auvolat2016-07-303-2/+29
|
* Factorize region allocator between kernel and user processes (same code was ↵Alex Auvolat2015-03-141-20/+2
| | | | there twice)
* Fix blocking channel && channel write on circular-overflow. (see ipc.c)Alex Auvolat2015-03-141-1/+1
|
* Add mutexes everywhere ; spam debug log (sorry)Alex Auvolat2015-03-141-0/+3
|
* Add better stack tracing technology (now uses kernel memory map!)Alex Auvolat2015-03-112-2/+5
|
* Change thread waiting technology. Slower but does not do crappy things like ↵Alex Auvolat2015-03-111-0/+4
| | | | malloc at impractical places.
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵Alex Auvolat2015-03-111-1/+1
| | | | waiters.
* Add pckbd driver.Alex Auvolat2015-03-111-0/+7
|
* Fix process exiting.Alex Auvolat2015-03-112-1/+2
|
* Add mk_shm syscall ; replace get_mode by fctl.Alex Auvolat2015-03-101-1/+0
|
* Pass more information to FS driver on some ops (TODO bugcheck).Alex Auvolat2015-03-101-6/+6
|
* Add simple shared memory facility to IPC (no syscall yet)Alex Auvolat2015-03-103-6/+13
|
* Rename & cleanup.Alex Auvolat2015-03-104-5/+6
|
* VESA mode setting ; displays kogata logo!Alex Auvolat2015-03-092-4/+6
|
* Implement V86 monitor and VESA mode detection.Alex Auvolat2015-03-092-0/+50
|
* Remove kernel region pf handlers ; fix forget-to-zero-out bug.Alex Auvolat2015-03-091-7/+1
|
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-093-6/+6
| | | | Also add some debugging facilities (especially stack trace).
* Nullfs now uses pager.Alex Auvolat2015-03-093-4/+12
|
* Add pager interface ; implement basic functionnality to replace private maps.Alex Auvolat2015-03-094-9/+90
|
* Require all fs_handle_t objects to point to a node.Alex Auvolat2015-03-091-6/+2
|
* Implement select ; add two tests for channels.Alex Auvolat2015-03-082-1/+5
|
* Tokens.Alex Auvolat2015-03-081-2/+7
|
* Change prototypes for read, write, readdir, close ; implement blocking IPC.Alex Auvolat2015-03-082-5/+5
|
* Channels.Alex Auvolat2015-03-081-0/+21
|
* Change VFS a bit in preparation for IPC code : ...Alex Auvolat2015-03-082-1/+10
| | | | | Handles now have a copy of data and ops, and may reference a null node in the case of an IPC channel.
* Add PRNGAlex Auvolat2015-03-081-0/+9
|
* Update readme ; change time-related function names.Alex Auvolat2015-03-071-2/+2
|
* Implement some missing syscalls.Alex Auvolat2015-03-071-1/+2
|
* Add previous notice to thread.hAlex Auvolat2015-03-041-0/+8
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-042-9/+20
| | | | | | | | Threads may now communicate via wait_on(void* ressource) and resume_on (void* ressource). Previous pause() is replaced by wait_on(current_thread) and resume(thread) by resume_on(thread). wait_on(x) may return false, indicating that the reason for returning is NOT that resume_on(x) was called but something else happenned. Typically false indicates that the curent thread is being killed and must terminate its kernel-land processing as soon as possible.
* Implement process termination and cleaning up (not completely though)Alex Auvolat2015-03-031-1/+2
|
* Add prototypes for process management...Alex Auvolat2015-03-032-6/+30
|
* Add comment about vfs_handle_tAlex Auvolat2015-03-021-0/+3
|
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-021-23/+10
|
* No lazy allocation of kernel memory. Placeholder for pmem freeing routine.Alex Auvolat2015-03-023-2/+12
|
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-022-10/+19
|
* IRQ handlers must be written with caution!Alex Auvolat2015-02-281-0/+10
|
* Implement fs_subfs (it's simple, really) ; add placeholders for more syscallsAlex Auvolat2015-02-241-1/+4
|
* Complete ISO9660 impl ; some strange wtf is going on.Alex Auvolat2015-02-241-0/+19
|
* Fix a bug (dispose in pciide should not exist)Alex Auvolat2015-02-241-5/+5
|
* Change VFS a bit : the root directory of a fs is now a pointer. Fix tests.Alex Auvolat2015-02-241-2/+1
|
* More preparation for iso9660Alex Auvolat2015-02-241-0/+87
|
* Make way for ISO 9660 driver.Alex Auvolat2015-02-241-0/+5
|
* Add PCI IDE driver (only PIO mode, no DMA yet.)Alex Auvolat2015-02-244-9/+155
|
* PCI enumeration ; rename dev:/ to io:/Alex Auvolat2015-02-244-16/+96
|
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-203-4/+32
|
* Think a bit ; ioctls only on open file descriptors.Alex Auvolat2015-02-201-2/+1
|
* Add kernel worker threads for handling various tasks (eg. interrupts)Alex Auvolat2015-02-192-2/+18
|
* Remove global locking on handles by VFS ; adapt nullfs.Alex Auvolat2015-02-191-1/+0
|