Changeset 5559712 in mainline for uspace/srv/sysman/units/unit_tgt.c


Ignore:
Timestamp:
2019-08-03T09:28:50Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
c0e4fc50
Parents:
2dda1d4
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-05-07 11:49:47)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-03 09:28:50)
Message:

sysman: Naive autostart instrumentation of locsrv

  • Add IPC_FLAG_AUTOSTART flag.
  • libsysman: sysman's broker and control API.
  • Simple implementation of service unit, exposee verification is missing.
  • Simple mapping of exposee to unit name in locsrv.
  • Temporary debug prints in locsrv.

Conflicts:

boot/Makefile.common
boot/arch/amd64/Makefile.inc
uspace/lib/c/include/ipc/services.h
uspace/srv/locsrv/locsrv.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/units/unit_tgt.c

    r2dda1d4 r5559712  
    6363}
    6464
     65static void unit_tgt_exposee_created(unit_t *unit)
     66{
     67        /* Target has no exposees. */
     68        assert(false);
     69}
     70
     71static void unit_tgt_fail(unit_t *unit)
     72{
     73        // TODO define semantics and implement
     74}
     75
     76
    6577DEFINE_UNIT_VMT(unit_tgt)
    6678
Note: See TracChangeset for help on using the changeset viewer.