Changeset 241f1985 in mainline for uspace/srv/taskman/task.c


Ignore:
Timestamp:
2019-08-31T10:45:17Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
102f641
Parents:
f92b315
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-08-23 22:04:34)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-31 10:45:17)
Message:

Correcting failure from previous merge

The commits from Michal Koutný from the branch system-daemon
where built on a old version of Helenos. Because of this
many types and API functions have changed. This commit
upgrades the merge code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/taskman/task.c

    rf92b315 r241f1985  
    5757 */
    5858
    59 static size_t ht_task_key_hash(void *key)
     59static size_t ht_task_key_hash(const void *key)
    6060{
    6161        return *(task_id_t*)key;
     
    6868}
    6969
    70 static bool ht_task_key_equal(void *key, const ht_link_t *item)
     70static bool ht_task_key_equal(const void *key, const ht_link_t *item)
    7171{
    7272        task_t *ht = hash_table_get_inst(item, task_t, link);
     
    199199        task_t *t = task_get_by_id(id);
    200200        if (t != NULL) {
    201                 rc = EEXISTS;
     201                rc = EEXIST;
    202202                goto finish;
    203203        }
Note: See TracChangeset for help on using the changeset viewer.