diff --git a/examples/thread.php b/examples/thread.php index e76948f..ff01e7f 100755 --- a/examples/thread.php +++ b/examples/thread.php @@ -4,7 +4,7 @@ require dirname(__DIR__).'/vendor/autoload.php'; use Amp\Delayed; use Amp\Loop; -use Amp\Parallel\Threading\Thread; +use Amp\Parallel\Thread\Thread; Loop::run(function () { $timer = Loop::repeat(1000, function () { diff --git a/lib/Threading/Internal/Mutex.php b/lib/Thread/Internal/Mutex.php similarity index 95% rename from lib/Threading/Internal/Mutex.php rename to lib/Thread/Internal/Mutex.php index 9074540..c7ca4ea 100644 --- a/lib/Threading/Internal/Mutex.php +++ b/lib/Thread/Internal/Mutex.php @@ -1,6 +1,6 @@