Changeset be07995 in mainline for uspace/srv/sysman/repo.c


Ignore:
Timestamp:
2019-08-17T13:54:09Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
8d74fdd
Parents:
015b147
git-author:
Michal Koutný <xm.koutny+hos@…> (2016-01-10 23:36:33)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-17 13:54:09)
Message:

sysman: Add support for closure creation with CLOSURE_ISOLATE flag

Now can create closures, that contain start jobs for all transitively dependent
jobs and stop for all others. (Next step: enqueue and execute.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/repo.c

    r015b147 rbe07995  
    176176}
    177177
    178 void repo_begin_update_(void) {
     178void repo_begin_update(void) {
    179179        sysman_log(LVL_DEBUG2, "%s", __func__);
    180180        fibril_rwlock_write_lock(&repo_lock);
     
    293293 * The function can be safely called from non-event loop fibrils
    294294 */
    295 unit_t *repo_find_unit_by_name_(const char *name)
     295unit_t *repo_find_unit_by_name(const char *name)
    296296{
    297297        return repo_find_unit_by_name_internal(name, true);
Note: See TracChangeset for help on using the changeset viewer.