How do "modern" cron daemons internally schedule their jobs? Some cronds used to schedule a run every so often via at. So after a crontab is written out, does crond:
- Parse the crontab for all future events and the sleep for the intervals?
- Poll an aggregated crontab database every minute to determine if the current time matches the schedule pattern?
- Other?
Thanks,