HomeSort by: relevance | last modified time | path
    Searched defs:db_history (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/ddb/
db_input.c 64 static char db_history[DDB_HISTORY_SIZE]; /* start of history buffer */ variable in typeref:typename:char[]
65 static char *db_history_curr = db_history; /* start of current line */
66 static char *db_history_last = db_history; /* start of last line */
135 if (db_history_curr > db_history + DDB_HISTORY_SIZE - 1) \
136 db_history_curr = db_history; \
140 if (db_history_curr < db_history) \
141 db_history_curr = db_history + DDB_HISTORY_SIZE - 1; \
147 KASSERT(&db_history[0] <= db_history_last);
148 KASSERT(db_history_last <= &db_history[DDB_HISTORY_SIZE-1]);
152 if (db_history_last > &db_history[DDB_HISTORY_SIZE-1]
    [all...]

Completed in 12 milliseconds