-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: need a Hello, World project
Solution: copy from zbroker and strip down. This builds an empty malamute main service that loads a configuration file, optionally switches into the background, and then exits.
- Loading branch information
Showing
28 changed files
with
2,389 additions
and
698 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,53 @@ | ||
# Object files | ||
*.o | ||
*.ko | ||
*.obj | ||
*.elf | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Libraries | ||
*.lib | ||
*.a | ||
*.la | ||
*.lo | ||
|
||
# Shared objects (inc. Windows DLLs) | ||
*.dll | ||
*.so | ||
*.so.* | ||
*.dylib | ||
*.lo | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.i*86 | ||
*.x86_64 | ||
*.hex | ||
|
||
Makefile | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.log | ||
config.status | ||
config/ | ||
configure | ||
doc/Makefile | ||
doc/Makefile.in | ||
doc/*.1 | ||
doc/*.3 | ||
doc/*.7 | ||
libtool | ||
.deps | ||
.libs | ||
src/Makefile | ||
src/Makefile.in | ||
src/malamute | ||
src/platform.h | ||
src/platform.h.in | ||
src/platform.h.in~ | ||
src/stamp-h1 | ||
src/test-suite.log | ||
src/mlm_selftest | ||
src/mlm_selftest.log | ||
src/mlm_selftest.trs | ||
doit* | ||
*.la | ||
*.pc | ||
core | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Contributors | ||
============ | ||
|
||
Pieter Hintjens <ph@imatix.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Contributing to This Project | ||
|
||
The contributors are listed in AUTHORS (add yourself). This project uses the MPL v2 license, see LICENSE. | ||
|
||
Please read these documents BEFORE you send a patch: | ||
|
||
* We use the [C4.1 (Collective Code Construction Contract)](http://rfc.zeromq.org/spec:22) process for contributions. Please read this if you are unfamiliar with it. | ||
|
||
* We use the [CLASS (C Language Style for Scalabilty)](http://rfc.zeromq.org/spec:21) guide for code style. Please read this, and also read the existing code base. |
Oops, something went wrong.