Changeset bd02038 in mainline for console/console.c
- Timestamp:
- 2006-06-09T08:29:25Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c891ed39
- Parents:
- e92aabf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
re92aabf rbd02038 215 215 connection_t *conn; 216 216 static int console_pixmap = -1; 217 int i, j ;217 int i, j, rc; 218 218 keyfield_t *field; 219 219 style_t *style; … … 258 258 interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j); 259 259 /* This call can preempt, but we are already at the end */ 260 j= async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);260 rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL); 261 261 }; 262 262 263 if ((!interbuffer) || (j != 0)) {263 if ((!interbuffer) || (j != 0)) { 264 264 set_style(&conn->screenbuffer.style); 265 265 clrscr();
Note:
See TracChangeset
for help on using the changeset viewer.