aboutsummaryrefslogtreecommitdiff
path: root/src/kernel
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove kernel region pf handlers ; fix forget-to-zero-out bug.Alex Auvolat2015-03-097-38/+35
|
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-0914-131/+261
| | | | Also add some debugging facilities (especially stack trace).
* Nullfs now uses pager.Alex Auvolat2015-03-099-112/+238
|
* Add pager interface ; implement basic functionnality to replace private maps.Alex Auvolat2015-03-097-56/+321
|
* Require all fs_handle_t objects to point to a node.Alex Auvolat2015-03-096-50/+79
|
* Implement select ; add two tests for channels.Alex Auvolat2015-03-0810-35/+162
|
* Implement missing syscalls.Alex Auvolat2015-03-081-0/+83
|
* Tokens.Alex Auvolat2015-03-082-2/+121
|
* Change prototypes for read, write, readdir, close ; implement blocking IPC.Alex Auvolat2015-03-087-84/+101
|
* Channels.Alex Auvolat2015-03-083-1/+184
|
* Change VFS a bit in preparation for IPC code : ...Alex Auvolat2015-03-084-12/+25
| | | | | Handles now have a copy of data and ops, and may reference a null node in the case of an IPC channel.
* Add two entropy sources. Warning: prng is not secure in any way, I have no ↵Alex Auvolat2015-03-083-3/+14
| | | | knowlege of such things.
* Add PRNGAlex Auvolat2015-03-084-2/+59
|
* Implement wait and exec.Alex Auvolat2015-03-073-6/+191
|
* Update readme ; change time-related function names.Alex Auvolat2015-03-073-6/+6
|
* Implement some missing syscalls.Alex Auvolat2015-03-073-22/+207
|
* Fix stupid forget-to-unreference bug.Alex Auvolat2015-03-041-1/+5
|
* Add previous notice to thread.hAlex Auvolat2015-03-041-0/+8
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-048-84/+219
| | | | | | | | 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.
* TY tito.Alex Auvolat2015-03-031-0/+1
|
* Implement process termination and cleaning up (not completely though)Alex Auvolat2015-03-035-28/+193
|
* Add prototypes for process management...Alex Auvolat2015-03-034-16/+64
|
* Add comment about vfs_handle_tAlex Auvolat2015-03-021-0/+3
|
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-027-233/+139
|
* Fix VFS reference counting.Alex Auvolat2015-03-021-17/+16
|
* More uses of free_some_memory()Alex Auvolat2015-03-023-7/+20
|
* No lazy allocation of kernel memory. Placeholder for pmem freeing routine.Alex Auvolat2015-03-028-15/+70
|
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-027-45/+65
|
* IRQ handlers must be written with caution!Alex Auvolat2015-02-282-3/+16
|
* Implement fs_subfs (it's simple, really) ; add placeholders for more syscallsAlex Auvolat2015-02-244-3/+122
|
* Fix calculations in iso9660_fh_readAlex Auvolat2015-02-242-20/+16
|
* Another important lesson.Alex Auvolat2015-02-241-1/+1
|
* Complete ISO9660 impl ; some strange wtf is going on.Alex Auvolat2015-02-244-3/+300
|
* Fix a bug (dispose in pciide should not exist)Alex Auvolat2015-02-244-19/+28
|
* Change VFS a bit : the root directory of a fs is now a pointer. Fix tests.Alex Auvolat2015-02-245-57/+61
|
* More preparation for iso9660Alex Auvolat2015-02-243-5/+126
|
* Make way for ISO 9660 driver.Alex Auvolat2015-02-244-10/+135
|
* Add PCI IDE driver (only PIO mode, no DMA yet.)Alex Auvolat2015-02-249-14/+925
|
* PCI enumeration ; rename dev:/ to io:/Alex Auvolat2015-02-247-28/+338
|
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-208-34/+68
|
* Think a bit ; ioctls only on open file descriptors.Alex Auvolat2015-02-205-61/+9
|
* Add kernel worker threads for handling various tasks (eg. interrupts)Alex Auvolat2015-02-197-9/+157
|
* Remove global locking on handles by VFS ; adapt nullfs.Alex Auvolat2015-02-193-40/+32
|
* Add syscall for ioctl on open handleAlex Auvolat2015-02-193-4/+31
|
* Userland test infrastructureAlex Auvolat2015-02-191-1/+1
|
* Several things :Alex Auvolat2015-02-195-26/+44
| | | | | | | - disambiguate syscall.h : kernel syscall.h moved to sct.h - fix btree_remove_v !! (munmap fucked up stuff before) - make nullfs's directory listing non-exclusive (it actually copies the listing on open() and readdir()'s from that copy)
* Implement basic syscalls...Alex Auvolat2015-02-193-3/+257
|
* Implement userspace mallocAlex Auvolat2015-02-193-14/+41
|
* Make VFS thread-safe, probably.Alex Auvolat2015-02-193-36/+145
|
* Make nullfs thread-safe (maybe in an overkill manner, but it doesn't cost ↵Alex Auvolat2015-02-191-10/+26
| | | | mutch).