Changeset 8565a42 in mainline for uspace/srv/taskmon/taskmon.c


Ignore:
Timestamp:
2018-03-02T20:34:50Z (7 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

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

    r3061bc1 r8565a42  
    135135{
    136136        printf("%s: Task Monitoring Service\n", NAME);
    137        
     137
    138138#ifdef CONFIG_WRITE_CORE_FILES
    139139        write_core_files = true;
     
    145145                return -1;
    146146        }
    147        
     147
    148148        async_set_fallback_port_handler(corecfg_client_conn, NULL);
    149        
     149
    150150        errno_t rc = loc_server_register(NAME);
    151151        if (rc != EOK) {
     
    154154                return -1;
    155155        }
    156        
     156
    157157        service_id_t sid;
    158158        rc = loc_service_register(SERVICE_NAME_CORECFG, &sid);
     
    162162                return -1;
    163163        }
    164        
     164
    165165        task_retval(0);
    166166        async_manager();
    167        
     167
    168168        return 0;
    169169}
Note: See TracChangeset for help on using the changeset viewer.