Fix a couple of comment typos

No functional change.

Submitted by:	Anton Rang <anton.rang AT isilon.com>
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Conrad Meyer 2017-08-15 02:21:02 +00:00
parent b53a8df3aa
commit f3fed04372
2 changed files with 2 additions and 2 deletions

View File

@ -416,7 +416,7 @@ DB_SHOW_COMMAND(ktr, db_ktr_all)
tstate.first = -1; tstate.first = -1;
db_ktr_verbose = 0; db_ktr_verbose = 0;
db_ktr_verbose |= (strchr(modif, 'v') != NULL) ? 2 : 0; db_ktr_verbose |= (strchr(modif, 'v') != NULL) ? 2 : 0;
db_ktr_verbose |= (strchr(modif, 'V') != NULL) ? 1 : 0; /* just timestap please */ db_ktr_verbose |= (strchr(modif, 'V') != NULL) ? 1 : 0; /* just timestamp please */
if (strchr(modif, 'a') != NULL) { if (strchr(modif, 'a') != NULL) {
db_disable_pager(); db_disable_pager();
while (cncheckc() == -1) while (cncheckc() == -1)

View File

@ -823,7 +823,7 @@ smp_no_rendezvous_barrier(void *dummy)
} }
/* /*
* Wait specified idle threads to switch once. This ensures that even * Wait for specified idle threads to switch once. This ensures that even
* preempted threads have cycled through the switch function once, * preempted threads have cycled through the switch function once,
* exiting their codepaths. This allows us to change global pointers * exiting their codepaths. This allows us to change global pointers
* with no other synchronization. * with no other synchronization.