Changeset 96b02eb9 in mainline for uspace/app/edit/edit.c


Ignore:
Timestamp:
2010-12-14T12:52:38Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b10dab
Parents:
554debd
Message:

more unification of basic types

  • use sysarg_t and native_t (unsigned and signed variant) in both kernel and uspace
  • remove ipcarg_t in favour of sysarg_t

(no change in functionality)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/edit.c

    r554debd r96b02eb9  
    100100static bool cursor_visible;
    101101
    102 static ipcarg_t scr_rows;
    103 static ipcarg_t scr_columns;
     102static sysarg_t scr_rows;
     103static sysarg_t scr_columns;
    104104
    105105#define ROW_BUF_SIZE 4096
     
    684684       
    685685        int i;
    686         ipcarg_t j;
     686        sysarg_t j;
    687687        for (i = rows; i < pane.rows; ++i) {
    688688                console_set_pos(con, 0, i);
Note: See TracChangeset for help on using the changeset viewer.