Skip to content

misosvec/cron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cron

This is a project for the Systems Programming course, Summer 2022. It's a cron-like task scheduler written in C.

Brief Description

  • in the /src directory, there are two files:
    • schedule.c – contains functions primarily for working with the schedule.txt file
    • task_scheduler.c – contains the core code of the scheduler
  • in the /tasks directory, there are files that will be executed
  • the schedule.txt file contains a list of tasks that will be executed at specified intervals
  • the log.txt file records information about the success or failure of task execution
  • the program works by waking up every minute and checking whether there are any task that need to be executed
  • compiled using:
    gcc -Wall -Werror -W -o ts task_scheduler.c

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages