Skip to content

Commit

Permalink
Moved project from code.google.com and ported from autotools to rebar.
Browse files Browse the repository at this point in the history
  • Loading branch information
saleyn committed Sep 29, 2012
1 parent e5ae5aa commit 958861e
Show file tree
Hide file tree
Showing 15 changed files with 2,674 additions and 4 deletions.
6 changes: 6 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Authors:
Serge Aleynikov <saleyn@gmail.com>

Contributors:
Dmitry Kargapolov <dmitriy.kargapolov@gmail.com>
- Autotools support
30 changes: 30 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
BSD LICENSE
===========

Copyright (C) 2003 Serge Aleynikov <saleyn@gmail.com>

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.

3. The names of the authors may not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# See LICENSE for licensing information.

PROJECT = erlexec

DIALYZER = dialyzer
REBAR = rebar

all:
@$(REBAR) compile

clean:
@$(REBAR) clean

docs: all clean-docs
@$(REBAR) doc skip_deps=true

clean-docs:
rm -f doc/*.{css,html,png} doc/edoc-info

12 changes: 12 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
erlexec
=======

Execute and control OS processes from Erlang/OTP.

This project implements a C++ port program and Erlang application that gives light-weight
Erlang processes fine-grain control over execution of OS processes.

It makes possible for an Erlang process to start, stop an OS process, send POSIX signals, know
process IDs of the started OS process, set up a monitor and/or link to it. This application
provides better control over OS processes than built-in erlang:open_port/2 command with a
{spawn, Command} option, and performs proper OS child process cleanup when the emulator exits.
4 changes: 0 additions & 4 deletions README.md

This file was deleted.

Loading

0 comments on commit 958861e

Please sign in to comment.