Changes between Version 47 and Version 48 of AS6-TME-B6


Ignore:
Timestamp:
Mar 29, 2022, 7:10:29 PM (3 years ago)
Author:
franck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AS6-TME-B6

    v47 v48  
    270270├── Makefile
    271271├── 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
    275275│   ├── syscalls.h
    276 │   └── usermem.h
     276│   └── usermem.h            // déclaration des limites du segment data
    277277├── kernel
    278278│   ├── Makefile
     
    280280│   ├── harch.h
    281281│   ├── hcpu.h
    282 │   ├── hcpua.S
     282│   ├── hcpua.S              // changement de pile dans le kentry
    283283│   ├── hcpuc.c
    284284│   ├── kernel.ld
     
    286286│   ├── klibc.c
    287287│   ├── klibc.h
    288 │   ├── kmemory.c            // Allocateurs slab et stack
    289 │   ├── kmemory.h
     288│   ├── kmemory.c            // code des allocateurs slab et stack
     289│   ├── kmemory.h            // prototypes des allocateurs
    290290│   ├── 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
    293293├── uapp
    294294│   ├── Makefile
     
    299299    ├── libc.c
    300300    ├── libc.h
    301     ├── memory.c             // Allocateur first fit
    302     ├── memory.h
     301    ├── memory.c             // code de l'allocateur first fit
     302    ├── memory.h             // prototype de l'allocateur
    303303    ├── thread.c
    304     ├── thread.h
     304    ├── thread.h             // prototype et structure thread_t
    305305    └── user.ld
    306306}}}