| 116 | } |
| 117 | |
| 118 | void screen_buffer_to_log(void) |
| 119 | { |
| 120 | int i; |
| 121 | if(intr_buffer_screen[intr_nbr_line][0]!='\0') |
| 122 | intr_nbr_line++; |
| 123 | /* to log file */ |
| 124 | /*@ |
| 125 | @ loop variant intr_nbr_line - i; |
| 126 | @*/ |
| 127 | for(i=0;i<intr_nbr_line;i++) |
| 128 | log_info("%s\n",intr_buffer_screen[i]); |
| 129 | } |
| 130 | |
| 131 | int get_partition_status(const partition_t *partition) |
| 132 | { |
no outgoing calls
no test coverage detected