Changeset 442 for soft/giet_vm/giet_common/pmem.c
- Timestamp:
- Nov 3, 2014, 11:29:19 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_common/pmem.c
r408 r442 24 24 if ( (base & 0x1FFFFF) || (size & 0x1FFFFF) ) 25 25 { 26 _printf("\n[GIET ERROR] in _pmem_alloc_init() : " 27 " pseg in cluster[%d][%d] not aligned on 2 Mbytes\n", x, y ); 26 _puts("\n[GIET ERROR] in _pmem_alloc_init() : pseg in cluster["); 27 _putd( x ); 28 _puts(","); 29 _putd( y ); 30 _puts("] not aligned on 2 Mbytes\n"); 28 31 _exit(); 29 32 } … … 58 61 if ( (bpi + n) > p->max_bppi ) 59 62 { 60 _printf("\n[GIET ERROR] in _get_big_ppn() : " 61 " not enough big physical pages in cluster[%d][%d]", x, y ); 63 _puts("\n[GIET ERROR] in _get_big_ppn() : not enough BPP in cluster["); 64 _putd( x ); 65 _puts(","); 66 _putd( y ); 67 _puts("]\n"); 62 68 _exit(); 63 69 } … … 85 91 if ( p->nxt_bppi + 1 > p->max_bppi ) 86 92 { 87 _printf("\n[GIET ERROR] in _get_small_ppn() : " 88 " not enough big physical pages in cluster[%d][%d]", x, y ); 93 _puts("\n[GIET ERROR] in _get_small_ppn() : not enough BPP in cluster["); 94 _putd( x ); 95 _puts(","); 96 _putd( y ); 97 _puts("]\n"); 89 98 _exit(); 90 99 }
Note: See TracChangeset
for help on using the changeset viewer.