Changeset bb51e9a8 in mainline


Ignore:
Timestamp:
2006-06-02T13:54:29Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
37458472
Parents:
83b1d61
Message:

Fixed ipc_call_sync calling bug.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    r83b1d61 rbb51e9a8  
    5050struct {
    5151        int phone;              /**< Framebuffer phone */
    52         int rows;               /**< Framebuffer rows */
    53         int cols;               /**< Framebuffer columns */
     52        ipcarg_t rows;          /**< Framebuffer rows */
     53        ipcarg_t cols;          /**< Framebuffer columns */
    5454} fb_info;
    5555
     
    6363} connection_t;
    6464
     65
     66
    6567connection_t connections[CONSOLE_COUNT];
    6668
     
    155157        char c,d;
    156158        connection_t *conn;
    157 
     159        keyfield_t *interbuffer = NULL;
     160
     161//      interbuffer = mmap(,, PROTO_READ|PROTO_WRITE, MAP_ANONYMOUS, , );       
     162       
    158163        /* Ignore parameters, the connection is alread opened */
    159164        while (1) {
     
    297302                return -1;
    298303        };
    299         async_new_connection(phonehash, 0, NULL, keyboard_events);
    300304
    301305        /* Connect to framebuffer driver */
     
    323327        }
    324328       
     329        async_new_connection(phonehash, 0, NULL, keyboard_events);
     330       
    325331        ipc_call_async_2(fb_info.phone, FB_CURSOR_GOTO, 0, 0, NULL, NULL);
    326332
Note: See TracChangeset for help on using the changeset viewer.