Commit Graph

539 Commits

Author SHA1 Message Date
François Autin
7860fc6a49 Merge branch 'lect-red' into 'main'
remplacement du lecteur rédacteur par les lock

See merge request simpleos/burritos!24
2023-05-10 11:03:07 +00:00
AmauryBrodu
f9de7f93bc remplacement du lecteur rédacteur par les lock 2023-05-10 12:51:12 +02:00
François Autin
569929098d Merge branch 'print_demo' into 'main'
Printing burritos logo instead of hello world

See merge request simpleos/burritos!23
2023-05-10 10:50:21 +00:00
François Autin
8929326505
Printing burritos logo instead of hello world 2023-05-10 12:49:20 +02:00
Brodu Amaury
a16d92ab7e Merge branch 'lect_red' into 'main'
ajout lecteur redacteur

See merge request simpleos/burritos!22
2023-05-10 10:32:29 +00:00
François Autin
df0930850a Merge branch 'clearing_make_file' into 'main'
Redirected error output from mv to /dev/null

See merge request simpleos/burritos!21
2023-05-10 10:27:24 +00:00
François Autin
0ba9a136cc
Redirected error output from mv to /dev/null 2023-05-10 12:26:42 +02:00
AmauryBrodu
ec2eea05ad ajout lecteur redacteur 2023-05-10 12:23:04 +02:00
François Autin
7f40538bc4 Merge branch 'makefile_demo' into 'main'
Updated makefile to add demos

See merge request simpleos/burritos!20
2023-05-10 09:20:19 +00:00
François Autin
20af365080
Updated makefile to add demos 2023-05-10 11:19:08 +02:00
Legot Quentin
01b1e90dba Merge branch 'fix-strings' into 'main'
Fix strings

See merge request simpleos/burritos!18
2023-05-10 07:11:04 +00:00
Quentin Legot
3f51413038 Add sum to producteur_consommateur 2023-05-09 23:24:43 +02:00
François Autin
e3654de298 Fixed nobody to run 2023-05-09 23:17:51 +02:00
Quentin Legot
98fe63f487 print exit code when using debug machine, add matmult 2023-05-09 23:16:16 +02:00
François Autin
15a04fb9da
Fixed tests failing because of a too small memory 2023-05-09 20:52:00 +02:00
François Autin
86113da9d3
Fixed missing UserStackSize from default configuration 2023-05-09 19:32:33 +02:00
François Autin
c51bb694a5 Merge branch 'fix-nothing-to-run' into 'main'
Fixed nobody to run

See merge request simpleos/burritos!19
2023-05-09 16:15:43 +00:00
François Autin
8c61fd1aa6
Fixed nobody to run 2023-05-09 18:08:44 +02:00
Quentin Legot
7be0c0accc Add user_stack_size to Machine and use it for threads sp 2023-05-09 17:01:52 +02:00
Quentin Legot
7d29b92eba temporary workaround for producteur_consommateur 2023-05-07 16:56:38 +02:00
Quentin Legot
2884d5d479 Fix shutdown test exception 2023-05-07 16:09:45 +02:00
Quentin Legot
c862c42e43 Fix instructions tests 2023-05-07 16:02:48 +02:00
Quentin Legot
5000c28b97 Fix endianness issues particulary with strings 2023-05-07 15:51:38 +02:00
Legot Quentin
5f8965b94d Merge branch 'thread_join' into 'main'
Merge ~~thread_scheduler~~ thread_join to main

See merge request simpleos/burritos!17
2023-05-04 22:41:25 +00:00
Legot Quentin
e0eb027aea Merge branch 'thread_scheduler' into 'thread_join'
Merge Thread scheduler to thread_join

See merge request simpleos/burritos!16
2023-05-04 22:21:22 +00:00
Legot Quentin
6eeaa57647 Merge branch 'fix-double-free' into 'thread_scheduler'
Fix double free

See merge request simpleos/burritos!15
2023-05-04 22:14:47 +00:00
François Autin
bec0143a40 Added missing current_thread assignment in test_lock_multiple 2023-05-04 23:44:10 +02:00
Quentin Legot
28cd0a9f6e Try to fix double free 2023-05-04 22:58:13 +02:00
Quentin Legot
43f023e0b0 Fix join not working on join.c 2023-05-04 22:19:00 +02:00
Rativel Remi
02cdb5239b Update userlib/sys.s 2023-05-02 19:57:43 +00:00
Quentin Legot
a211e93905 try to implement join 2023-04-23 15:42:33 +02:00
François Autin
1055e6a0ac
Fixed lock_release behaviour when multiple users of given lock 2023-04-20 15:34:49 +02:00
François Autin
c278236d81
Updated thread_manager module documentation 2023-04-20 15:21:28 +02:00
Rémi Rativel
597ffa753a test lock for multiple threads
Signed-off-by: Rémi Rativel <remi.rativel@etudiant.univ-rennes1.fr>
2023-04-20 15:20:28 +02:00
François Autin
aba2fbc718
Updated lock_release to update lock in objaddr list 2023-04-20 14:50:44 +02:00
Rémi Rativel
c33df28307 Merging
Signed-off-by: Rémi Rativel <remi.rativel@etudiant.univ-rennes1.fr>
2023-04-20 14:43:15 +02:00
François Autin
bb1d2383bb Simplified Rc<RefCell<Thread>> 2023-04-20 11:31:25 +02:00
François Autin
780ed4b461
📝 Added module documentation for thread_manager 2023-04-20 00:05:37 +02:00
François Autin
5c66577989
Cleanup of clippy warnings 2023-04-19 23:38:58 +02:00
François Autin
fe519555cc
Removed thread_to_be_destroyed field and associated methods
This used to exist in NachOS' source code as memory management is manual in C++.
Here, simply dropping the Thread from the thread list allows the borrow checker to
automatically destroy the thread.
2023-04-19 23:33:37 +02:00
François Autin
8b13cc6ef6
♻️ Clean-up of some nasty nesting in sem_v and sem_p 2023-04-19 23:24:51 +02:00
François Autin
5734e02b30
♻️ Refactored lock_acquire 2023-04-19 23:13:27 +02:00
François Autin
f55189f1fe ♻️ Refactored lock_release 2023-04-19 21:30:28 +02:00
François Autin
efe00ffa26 📝 Documentation update 2023-04-19 18:12:27 +02:00
François Autin
73ac8d3083 BurritOS now read configuration file 2023-04-19 18:09:08 +02:00
François Autin
1c4c51b0ba Merge branch 'settings' into thread_scheduler 2023-04-19 16:39:58 +02:00
François Autin
74a0960ec3 Added user configuration to utility module 2023-04-19 16:39:39 +02:00
Rémi Rativel
32c1237c26 Tests lock
Signed-off-by: Rémi Rativel <remi.rativel@etudiant.univ-rennes1.fr>
2023-04-19 15:52:31 +02:00
Rémi Rativel
35b2949243 implemented lock_release in thread_manager.rs, for this, I derived the clone function for lock in synch.rs and list in list.rs 2023-04-18 12:13:56 +02:00
Rémi Rativel
ec2f50f7d3 implemented sc_lock_release
TODO : to implement lock_release in thread_manager
2023-04-13 14:45:57 +02:00