Changes in / [b077886e:3052ff4] in mainline


Ignore:
Files:
25 added
70 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/include/asm.h

    rb077886e r3052ff4  
    422422        asm volatile (
    423423                "rsm %[mask]\n"
    424                 ";;\n"
    425                 "srlz.d\n"
    426424                :: [mask] "i" (PSR_PK_MASK)
    427425        );
  • kernel/arch/ia64/src/mm/as.c

    rb077886e r3052ff4  
    7373                rr.map.ps = PAGE_WIDTH;
    7474                rr_write(i, rr.word);
    75                 srlz_d();
    76                 srlz_i();
    7775        }
     76        srlz_d();
     77        srlz_i();
    7878}
    7979
  • uspace/app/edit/edit.c

    rb077886e r3052ff4  
    8888static pane_t pane;
    8989
    90 static int scr_rows, scr_columns;
     90static ipcarg_t scr_rows, scr_columns;
    9191
    9292#define ROW_BUF_SIZE 4096
     
    362362{
    363363        int sh_rows, rows;
    364         int i, j;
     364        int i;
     365        unsigned j;
    365366
    366367        sheet_get_num_rows(&doc.sh, &sh_rows);
     
    451452                /* Fill until the end of display area. */
    452453
    453                 if (str_length(row_buf) < (unsigned) scr_columns)
     454                if (str_length(row_buf) < scr_columns)
    454455                        fill = scr_columns - str_length(row_buf);
    455456                else
  • uspace/app/tetris/screen.h

    rb077886e r3052ff4  
    5151
    5252typedef struct {
    53         int ws_row;
    54         int ws_col;
     53        ipcarg_t ws_row;
     54        ipcarg_t ws_col;
    5555} winsize_t;
    5656
  • uspace/lib/libc/generic/io/console.c

    rb077886e r3052ff4  
    4545}
    4646
    47 int console_get_size(int phone, int *cols, int *rows)
     47int console_get_size(int phone, ipcarg_t *rows, ipcarg_t *cols)
    4848{
    49         ipcarg_t cols_v;
    50         ipcarg_t rows_v;
    51         int rc;
    52 
    53         rc = async_req_0_2(phone, CONSOLE_GET_SIZE, &cols_v, &rows_v);
    54 
    55         *cols = (int) cols_v;
    56         *rows = (int) rows_v;
    57         return rc;
     49        return async_req_0_2(phone, CONSOLE_GET_SIZE, rows, cols);
    5850}
    5951
     
    9486}
    9587
    96 void console_goto(int phone, int col, int row)
     88void console_goto(int phone, ipcarg_t row, ipcarg_t col)
    9789{
    98         async_msg_2(phone, CONSOLE_GOTO, col, row);
     90        async_msg_2(phone, CONSOLE_GOTO, row, col);
    9991}
    10092
  • uspace/lib/libc/include/io/console.h

    rb077886e r3052ff4  
    6868extern void console_clear(int phone);
    6969
    70 extern int console_get_size(int phone, int *cols, int *rows);
    71 extern void console_goto(int phone, int col, int row);
     70extern int console_get_size(int phone, ipcarg_t *rows, ipcarg_t *cols);
     71extern void console_goto(int phone, ipcarg_t row, ipcarg_t col);
    7272
    7373extern void console_set_style(int phone, int style);
Note: See TracChangeset for help on using the changeset viewer.