Changes in / [3052ff4:b077886e] in mainline


Ignore:
Files:
70 added
25 deleted
6 edited

Legend:

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

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

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

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

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

    r3052ff4 rb077886e  
    4545}
    4646
    47 int console_get_size(int phone, ipcarg_t *rows, ipcarg_t *cols)
     47int console_get_size(int phone, int *cols, int *rows)
    4848{
    49         return async_req_0_2(phone, CONSOLE_GET_SIZE, rows, cols);
     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;
    5058}
    5159
     
    8694}
    8795
    88 void console_goto(int phone, ipcarg_t row, ipcarg_t col)
     96void console_goto(int phone, int col, int row)
    8997{
    90         async_msg_2(phone, CONSOLE_GOTO, row, col);
     98        async_msg_2(phone, CONSOLE_GOTO, col, row);
    9199}
    92100
  • uspace/lib/libc/include/io/console.h

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