ash: improve comments

This commit is contained in:
Denis Vlasenko 2008-06-27 00:29:34 +00:00
parent 448d30ee17
commit 26bc57d8b2

View File

@ -204,8 +204,9 @@ struct globals_misc {
/* Rarely referenced stuff */ /* Rarely referenced stuff */
#if ENABLE_ASH_RANDOM_SUPPORT #if ENABLE_ASH_RANDOM_SUPPORT
int32_t random_galois_LFSR; /* Galois LFSR (fast but weak) */ /* Random number generators */
uint32_t random_LCG; /* LCG1 (fast but weak) */ int32_t random_galois_LFSR; /* Galois LFSR (fast but weak). signed! */
uint32_t random_LCG; /* LCG (fast but weak) */
#endif #endif
pid_t backgndpid; /* pid of last background process */ pid_t backgndpid; /* pid of last background process */
smallint job_warning; /* user was warned about stopped jobs (can be 2, 1 or 0). */ smallint job_warning; /* user was warned about stopped jobs (can be 2, 1 or 0). */