- Timestamp:
- 2006-05-30T10:40:17Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 44c6d88d
- Parents:
- f25b73d6
- Location:
- fb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
fb/fb.c
rf25b73d6 r79460ae 127 127 int vfb = vfb_no++; 128 128 129 if (vfb > 9) {129 if (vfb > VFB_CONNECTIONS) { 130 130 ipc_answer_fast(iid, ELIMIT, 0,0); 131 131 return; … … 536 536 537 537 538 if( (graphics_items[item_new]=malloc(sizeof(framebuffer_descriptor_t))) == NULL)538 if( (graphics_items[item_new]=malloc(sizeof(framebuffer_descriptor_t))) == NULL) 539 539 { 540 540 return EFB; -
fb/fb.h
rf25b73d6 r79460ae 33 33 #include <arch/types.h> 34 34 35 #define VFB_CONNECTIONS 9 36 35 37 //void fb_init(int item,__address addr, unsigned int x, unsigned int y, unsigned int bpp, unsigned int scan); 36 38
Note:
See TracChangeset
for help on using the changeset viewer.
