| 370 | "Console device control"); |
| 371 | |
| 372 | void |
| 373 | cngrab() |
| 374 | { |
| 375 | struct cn_device *cnd; |
| 376 | struct consdev *cn; |
| 377 | |
| 378 | STAILQ_FOREACH(cnd, &cn_devlist, cnd_next) { |
| 379 | cn = cnd->cnd_cn; |
| 380 | if (!kdb_active || !(cn->cn_flags & CN_FLAG_NODEBUG)) |
| 381 | cn->cn_ops->cn_grab(cn); |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | void |
| 386 | cnungrab() |
no outgoing calls
no test coverage detected