Changeset 22d990c in mainline for uspace/srv/loader/main.c


Ignore:
Timestamp:
2020-01-11T00:36:26Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
06599a1
Parents:
8a74512
Message:

Clean up code

Correcting order of includes. Remove unnecessary new lines. Removing
old function declaration. Typos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/main.c

    r8a74512 r22d990c  
    3939 * loader.
    4040 *
    41  * The apparent caller uses his phone to send the pathname and various other
     41 * The apparent caller uses its phone to send the pathname and various other
    4242 * information to the loader. This is normally done by the C library
    4343 * and completely hidden from applications.
     
    4949#include <stddef.h>
    5050#include <ipc/services.h>
     51#include <ipc/loader.h>
     52#include <ns.h>
     53#include <loader/pcb.h>
     54#include <entry_point.h>
     55#include <errno.h>
     56#include <async.h>
     57#include <str.h>
    5158#include <as.h>
    52 #include <async.h>
    5359#include <elf/elf.h>
    5460#include <elf/elf_load.h>
    55 #include <entry_point.h>
    56 #include <errno.h>
    5761#include <fibril_synch.h>
    58 #include <ipc/loader.h>
    59 #include <loader/pcb.h>
    60 #include <ns.h>
    61 #include <str.h>
    6262#include <task.h>
    6363#include <taskman.h>
Note: See TracChangeset for help on using the changeset viewer.