mirror of
https://github.com/overte-org/overte.git
synced 2025-06-20 11:20:17 +02:00
AssignmentClientMonitor now has a NodeList. It stores its local port in shared memory, like the DomainServer does. As it spawns children, it addes Nodes to the NodeList for each one. The children send status updates to the Monitor. The Monitor will notice if there are no spares and fork another child.
18 lines
405 B
C++
18 lines
405 B
C++
//
|
|
// main.cpp
|
|
// assignment-client/src
|
|
//
|
|
// Created by Stephen Birarda on 8/22/13.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
|
|
#include "AssignmentClientApp.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
AssignmentClientApp app(argc, argv);
|
|
return 0;
|
|
}
|