Changeset 4224ef7 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2019-08-06T18:18:37Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
e55741e
Parents:
dd5c623
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-05-11 16:50:40)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-06 18:18:37)
Message:

sysman: Add VFS FS server autostart

  • VFS autostart instrumentation removes explicit dependency on FS servers.
  • Compositor service properly named, it's now resolved as implicit dependency.

Conflicts:

boot/Makefile.common
uspace/lib/gui/window.c
uspace/srv/locsrv/locsrv.c
uspace/srv/vfs/vfs.c
uspace/srv/vfs/vfs_ops.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.c

    rdd5c623 r4224ef7  
    4040#include <ipc/services.h>
    4141#include <abi/ipc/methods.h>
    42 #include <libarch/config.h>
    4342#include <ns.h>
     43#include <as.h>
    4444#include <async.h>
     45#include <atomic.h>
    4546#include <errno.h>
    4647#include <str_error.h>
    4748#include <stdio.h>
     49#include <ipc/services.h>
     50#include <macros.h>
    4851#include <stdbool.h>
     52#include <stdio.h>
    4953#include <str.h>
    50 #include <as.h>
    51 #include <macros.h>
     54#include <sysman/broker.h>
    5255#include "vfs.h"
    5356
     
    145148
    146149        /*
     150         * Let sysman know we are broker
     151         */
     152        rc = sysman_broker_register();
     153        if (rc != EOK) {
     154                printf("%s: Error registering at sysman (%i)\n", NAME, rc);
     155                return rc;
     156        }
     157       
     158        /*
    147159         * Start accepting connections.
    148160         */
Note: See TracChangeset for help on using the changeset viewer.