Changeset eb083ad in mainline for uspace/app/nterm/conn.h


Ignore:
Timestamp:
2012-05-17T21:09:06Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8fde078
Parents:
a8b8086 (diff), 3e67ab1 (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.
Message:

merge mainline changes

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/nterm/conn.h

    ra8b8086 reb083ad  
    11/*
    2  * Copyright (c) 2009 Lukas Mejdrech
     2 * Copyright (c) 2012 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup edit
    3030 * @{
    3131 */
    32 
    33 /** @file
    34  * Generic module functions.
    35  *
    36  * @todo MAKE IT POSSIBLE TO REMOVE THIS FILE VIA EITHER REPLACING PART OF ITS
    37  * FUNCTIONALITY OR VIA INTEGRATING ITS FUNCTIONALITY MORE TIGHTLY WITH THE REST
    38  * OF THE SYSTEM.
     32/**
     33 * @file
    3934 */
    4035
    41 #ifndef LIBC_MODULES_H_
    42 #define LIBC_MODULES_H_
     36#ifndef CONN_H
     37#define CONN_H
    4338
    44 #include <async.h>
    45 #include <ipc/services.h>
    46 #include <sys/time.h>
     39#include <sys/types.h>
    4740
    48 extern void answer_call(ipc_callid_t, int, ipc_call_t *, size_t);
    49 extern async_sess_t *bind_service(services_t, sysarg_t, sysarg_t, sysarg_t,
    50     async_client_conn_t);
    51 extern void refresh_answer(ipc_call_t *, size_t *);
     41extern int conn_open(const char *, const char *);
     42extern int conn_send(void *, size_t);
    5243
    5344#endif
Note: See TracChangeset for help on using the changeset viewer.