Changes between Version 47 and Version 48 of AS6-TME-B6
- Timestamp:
- Mar 29, 2022, 7:10:29 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AS6-TME-B6
v47 v48 270 270 ├── Makefile 271 271 ├── common 272 │ ├── debug_off.h 273 │ ├── debug_on.h 274 │ ├── list.h 272 │ ├── debug_off.h // message de debug évolué 273 │ ├── debug_on.h // expliqué plus tard 274 │ ├── list.h // gestion des listes chaînée 275 275 │ ├── syscalls.h 276 │ └── usermem.h 276 │ └── usermem.h // déclaration des limites du segment data 277 277 ├── kernel 278 278 │ ├── Makefile … … 280 280 │ ├── harch.h 281 281 │ ├── hcpu.h 282 │ ├── hcpua.S 282 │ ├── hcpua.S // changement de pile dans le kentry 283 283 │ ├── hcpuc.c 284 284 │ ├── kernel.ld … … 286 286 │ ├── klibc.c 287 287 │ ├── klibc.h 288 │ ├── kmemory.c // Allocateurs slab et stack289 │ ├── kmemory.h 288 │ ├── kmemory.c // code des allocateurs slab et stack 289 │ ├── kmemory.h // prototypes des allocateurs 290 290 │ ├── ksyscalls.c 291 │ ├── kthread.c 292 │ └── kthread.h 291 │ ├── kthread.c // code de la gestion des threads 292 │ └── kthread.h // prototypes et structure kthread_t 293 293 ├── uapp 294 294 │ ├── Makefile … … 299 299 ├── libc.c 300 300 ├── libc.h 301 ├── memory.c // Allocateur first fit302 ├── memory.h 301 ├── memory.c // code de l'allocateur first fit 302 ├── memory.h // prototype de l'allocateur 303 303 ├── thread.c 304 ├── thread.h 304 ├── thread.h // prototype et structure thread_t 305 305 └── user.ld 306 306 }}}