Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yell/process-manager

My solution to Kodisoft C++ challenge 2015
https://github.com/yell/process-manager

c-plus-plus cpp cpp11 process-manager process-monitor visual-studio winapi

Last synced: 21 days ago
JSON representation

My solution to Kodisoft C++ challenge 2015

Awesome Lists containing this project

README

        

# Process manager
My solution for C++ task for Kodisoft Internship 2015. The task was to create thread-safe windows process manager.

## Features
- create process by specifying command line with args or open existing one specifying pid;
- restart (with the same command line and args) and close process;
- retrieve process info (`id`, `handle`, `status`);
- stop process (without restart) and start it again;
- log all events into console or file;
- add `std::function` callbacks to all events;
- work both with unicode and ascii characters.