public LinuxTimer()
        {
            this.fileDescriptor = LinuxInterop.timerfd_create(LinuxInterop.ClockIds.CLOCK_MONOTONIC, 0);

            ThreadPool.QueueUserWorkItem(Scheduler);
        }