Changeset f651e80 in mainline for kernel/generic/src/proc


Ignore:
Timestamp:
2009-01-08T12:07:38Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7447572
Parents:
c571f42
Message:

Make newlines in panic messages consistent. Add periods at end of messages so that it is obvious whether they are printed entirely.

Location:
kernel/generic/src/proc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/scheduler.c

    rc571f42 rf651e80  
    452452                         * Entering state is unexpected.
    453453                         */
    454                         panic("tid%" PRIu64 ": unexpected state %s\n",
     454                        panic("tid%" PRIu64 ": unexpected state %s.",
    455455                            THREAD->tid, thread_states[THREAD->state]);
    456456                        break;
  • kernel/generic/src/proc/tasklet.c

    rc571f42 rf651e80  
    5252        tasklet_list = malloc(sizeof(tasklet_descriptor_t *) * config.cpu_count, 0);
    5353        if (!tasklet_list)
    54                 panic("Error initializing tasklets");
     54                panic("Error initializing tasklets.");
    5555       
    5656        for (i = 0; i < config.cpu_count; i++)
Note: See TracChangeset for help on using the changeset viewer.