mutex include cleanup.
Change-Id: I63d4184260d204a9d5f7658ad51fbe63dbb3c9e4 Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
This commit is contained in:
parent
114d181845
commit
ef09966978
6 changed files with 0 additions and 11 deletions
4
PROBLEMS
4
PROBLEMS
|
@ -35,10 +35,6 @@
|
||||||
poll() calls to be without timeout. Or something similar, depending
|
poll() calls to be without timeout. Or something similar, depending
|
||||||
on case.
|
on case.
|
||||||
|
|
||||||
- Recursive mutexes are evil. The last remaining instances should be
|
|
||||||
removed from the Kit/ChildSession.cppp as/when we move to a single
|
|
||||||
threaded Kit process.
|
|
||||||
|
|
||||||
- Occasionally Control-C (SIGINT) doesn't shut down coolwsd. One has
|
- Occasionally Control-C (SIGINT) doesn't shut down coolwsd. One has
|
||||||
to kill it with SIGKILL. Which of course leaves all the chroot jails
|
to kill it with SIGKILL. Which of course leaves all the chroot jails
|
||||||
around. Hitting Control-C a second time will attempt a faster, and
|
around. Hitting Control-C a second time will attempt a faster, and
|
||||||
|
|
|
@ -29,7 +29,6 @@
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <mutex>
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
#include <net/DelaySocket.hpp>
|
#include <net/DelaySocket.hpp>
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <mutex>
|
|
||||||
|
|
||||||
#define DELAY_LOG(X) std::cerr << X << '\n';
|
#define DELAY_LOG(X) std::cerr << X << '\n';
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
|
|
||||||
#include <Socket.hpp>
|
#include <Socket.hpp>
|
||||||
|
|
||||||
#include <mutex>
|
|
||||||
|
|
||||||
/// Simulates network latency for local debugging.
|
/// Simulates network latency for local debugging.
|
||||||
///
|
///
|
||||||
/// We are lifecycle managed internally based on the physical /
|
/// We are lifecycle managed internally based on the physical /
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <mutex>
|
|
||||||
#include <sys/poll.h>
|
#include <sys/poll.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <mutex>
|
|
||||||
|
|
||||||
#include "AdminModel.hpp"
|
#include "AdminModel.hpp"
|
||||||
#include "Log.hpp"
|
#include "Log.hpp"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue