Showing 20 open source projects for "round robin algorithm in c#"

View related business solutions
  • Enterprise-grade ITSM, for every business Icon
    Enterprise-grade ITSM, for every business

    Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity.

    Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
    Try it Free
  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • 1
    ANTIRTOS

    ANTIRTOS

    Function pointers queues classes library for Arduino

    ANTIRTOS is a compact real-time operating system (RTOS) written in ANSI C for microcontrollers and embedded systems. It is designed to be simple, portable, and efficient, making it ideal for resource-constrained environments such as IoT devices, robotics, and educational hardware projects. ANTIRTOS features a basic scheduler, support for cooperative and preemptive multitasking, and offers portability across different CPU architectures with minimal changes. Its simplicity and clarity make...
    Downloads: 6 This Week
    Last Update:
    See Project
  • 2
    glider

    glider

    glider is a forward proxy with multiple protocols support

    glider is a forward proxy with multiple protocols support, and also a dns/dhcp server with ipset management features(like dnsmasq). We can set up local listeners as proxy servers, and forward requests to internet via forwarders. Act as both proxy client and proxy server(protocol converter). Flexible proxy & protocol chains. Load balancing with the following scheduling algorithm, rr: round robin, ha: high availability, lha: latency based high availability, dh: destination hashing. Rule...
    Downloads: 6 This Week
    Last Update:
    See Project
  • 3
    pranaOS

    pranaOS

    Smart Operating System for x86, ARM, Mobile, Watch

    pranaOS is a hobby operating system built from scratch in C and C++, intended to teach and demonstrate operating system fundamentals such as process control, memory management, and kernel bootstrapping. It is designed for the x86_64 architecture and features a custom shell, task scheduler, and keyboard driver. With a strong focus on education, pranaOS serves as a base for experimenting with kernel development and learning how different subsystems interact in a functioning OS.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Haiway

    Haiway

    Haiway Edge Computing OS

    Haiway is a simple operating system written from scratch in C with the goal of helping learners understand OS development fundamentals. Targeting x86_64 systems and running in a bare-metal environment like QEMU, Haiway implements its own bootloader, kernel, and essential subsystems such as memory management, interrupt handling, and user process execution. Designed to be lightweight and readable, the project emphasizes clarity and modularity, making it a useful base for experimentation...
    Downloads: 2 This Week
    Last Update:
    See Project
  • Sales CRM and Pipeline Management Software | Pipedrive Icon
    Sales CRM and Pipeline Management Software | Pipedrive

    The easy and effective CRM for closing deals

    Pipedrive’s simple interface empowers salespeople to streamline workflows and unite sales tasks in one workspace. Unlock instant sales insights with Pipedrive’s visual sales pipeline and fine-tune your strategy with robust reporting features and a personalized AI Sales Assistant.
    Try it for free
  • 5
    Like OS

    Like OS

    Real time preemptive embedded multi-thread kernel

    This project is now in the research and development stage. It is intended for very small microcontrollers with a single processor and represent simple multithreading kernel what written by C language. Is planning create implementations for AVR8 and STM8, may be. Now it is suspended until better time.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6

    PRTOS Preemptive RTOS for embedded aps

    PRTOS is a simple, compact preemptive RTOS for embedded systems

    PRTOS is an open-source preemptive real time operating system kernel for embedded applications. It presently supports the AVR and MSP430 architectures. The advantages of PRTOS are: It has the smallest footprint of any true preemptive system: 1.9kB for basic scheduling and task control, 5.1kB with all the features below (AVR '328 / gcc -Os); Only 950 lines of code implement all of the RTOS features (SLOC-L); The system is well documented with a comprehensive manual,...
    Downloads: 2 This Week
    Last Update:
    See Project
  • 7
    Fiwix

    Fiwix

    A UNIX-like kernel for the i386 architecture

    FiwixOS 3 is a Fiwix distribution, an operating system made from a software collection that is based upon the Fiwix kernel. It basically comprises a Fiwix kernel, GNU tools, libraries and additional software. All the included software is free and open-source software made available both as compiled binaries and in source code form, which allows modifications to the original software. FiwixOS 3 uses the Newlib v3.1.0 as its C standard library, and the Ext2 as its primary file system. Fiwix...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Round Robin Scheduling Simulation
    It is programmed using Queue on JAVA You can change CPU Burst, CPU Speed, Add Process manually, ON/OFF
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9

    AOS

    C++ RTOS for my mustang ECU project

    RTOS written in C++ for LPC23xx (ARM7) microcontroller. Also port for windows exists, but it is not fully functional yet. Preemptive, powerfull RTOS which i use on PCM for Mustang 2005 V6 cologne engine.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Secure remote access solution to your private network, in the cloud or on-prem. Icon
    Secure remote access solution to your private network, in the cloud or on-prem.

    Deliver secure remote access with OpenVPN.

    OpenVPN is here to bring simple, flexible, and cost-effective secure remote access to companies of all sizes, regardless of where their resources are located.
    Get started — no credit card required.
  • 10

    java loadbalancer

    A simple loadbalancer written in java

    This project is about to give you a simple (but powerful) loadbalancer written in JAVA. "The performance of a Java based load balancer may never match that of a well written load balancer in C/C++, but as teh platform is evolves further, it can only get better." (from http://javalb.sourceforge.net/) My project is a mutch more simple way to have a TCP loadbalancer. It has a hard coded round robin (tictoc) algorythm, and (right now) limited to 2 realservers (it will change in the future)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11

    microDispatch

    Microcontroller Task Scheduler

    Super lightweight task scheduler aimed at 8 bit AVR ATmega micro-controllers (perfect for Arduino), although it can easily be used on other hardware like Microchip PIC. It uses simple round-robin scheduling so no priority levels can be set. You choose the time interval by calling dispatchTick(), this is usually in a timer interrupt. Range for number of tasks: 0 to 255 tasks Range for delay: 0 to 65535 ticks Each task only uses 5 byte of RAM. The one task LED blink example only uses 5...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    qtOS

    Tiny operating system for running HCFSM-based systems

    qtOS is an operating system for running systems of finite-state machines. The system kernel is a task scheduler that runs processes' transitions at every cycle. Each task is activated either to be run in parallel (fork) with other active processes in the system or subordinated to the caller task, thus blocking it and creating a hierarchy of tasks. Execution of processes can be preemptive or non-preemptive and, among those with the same priority, a round-robin turn is performed...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    A system for reading system statistical data and feeding it to RRDtool. Designed to be both flexible and use little resources. Currently only reading of /proc/ files works, SNMP support is planned.
    Leader badge
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14
    Kmax 8bit microkernel for AVR ATMega MCUs written in assembler (AVRASM & GCC compatible) with a C API. Core features include priority-based preemptive round-robin scheduling, mutexes, fifos and semaphores with a focus on speed and ease of use.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    The load robin-robin algorithm directs network connections to different real servers based on server weights in a round-robin manner. This case the weights are update in real time and it is based in the loads real servers monitored for the director.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    SangMyung Univ. Graduate Project Project: MyRTOS Team name:Software Craftsmanship Description: pxa255 based RTOS. Preemptive Multi-threading,Priority-base,Round-Robin Scheduling, Thread, Semaphore,Message Mail Box,Message Queue Management Support.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Trio extends the existing Linux scheduler to support proportional-share scheduling using a scheduling algorithm, called Distributed Weighted Round-Robin (DWRR). It allows users to control shares of CPU time for any thread or group of threads.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    balance
    Balance is a simple but powerful generic tcp proxy with round robin load balancing and failover mechanisms. Via shared memory its behaviour can be controlled at runtime using a simple command line syntax.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 19
    Imbalance is a lightweight redirector that runs as an Apache PHP Script, and a PHP daemon. Imbalance uses a cost based round-robin weighted algorithm to distribute load across web servers with the ability to create user defined cost calculations
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    mergelog is a small C program which merges by date HTTP log files in 'Common Log Format' from Web servers behind round-robin DNS. It can easily process huge log files and is much faster than multisort.
    Downloads: 1 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.