]> git.sur5r.net Git - i3/i3/commitdiff
Fix AnyEvent->timer call (#3008)
authorMichael Stapelberg <stapelberg@users.noreply.github.com>
Thu, 5 Oct 2017 20:03:33 +0000 (13:03 -0700)
committerGitHub <noreply@github.com>
Thu, 5 Oct 2017 20:03:33 +0000 (13:03 -0700)
And make the remaining AnyEvent->condvar and AnyEvent->timer calls
consistent.

testcases/t/268-ipc-config.t
testcases/t/289-ipc-shutdown-event.t
testcases/t/525-i3bar-mouse-bindings.t

index b21ff1b2ae003781b9763c818ed4ea1b7d0c5d5e..9ac749b63143950b372984f7462b40ac06c41e7d 100644 (file)
@@ -42,8 +42,8 @@ get_socket_path(0);
 my $i3 = i3(get_socket_path());
 $i3->connect->recv;
 
-my $cv = AE::cv;
-my $timer = AE::timer 0.5, 0, sub { $cv->send(0); };
+my $cv = AnyEvent->condvar;
+my $timer = AnyEvent->timer(after => 0.5, interval => 0, cb => sub { $cv->send(0); });
 
 my $last_config = $i3->get_config()->recv;
 chomp($last_config->{config});
index f2b5246010054fcc6a0825918bd52007229c035e..606474e24e2abb27a77648f06962d545d5ae6b54 100644 (file)
@@ -30,7 +30,7 @@ my $i3 = i3(get_socket_path());
 $i3->connect->recv;
 
 my $cv = AnyEvent->condvar;
-my $timer = AE::timer 0.5, 0, sub { $cv->send(0); };
+my $timer = AnyEvent->timer(after => 0.5, interval => 0, cb => sub { $cv->send(0); });
 
 $i3->subscribe({
         shutdown => sub {
@@ -51,7 +51,7 @@ $i3 = i3(get_socket_path());
 $i3->connect->recv;
 
 $cv = AnyEvent->condvar;
-$timer = AE::timer 0.5, 0, sub { $cv->send(0); };
+$timer = AnyEvent->timer(after => 0.5, interval => 0, cb => sub { $cv->send(0); });
 
 $i3->subscribe({
         shutdown => sub {
index d3216d974cba8381ef7ed0ec59468ca40095f3e3..e67f0df9909eb9389f8be3f18b57c974eda7aa97 100644 (file)
@@ -39,7 +39,7 @@ $i3->connect()->recv;
 my $ws = fresh_workspace;
 
 my $cv = AnyEvent->condvar;
-my $timer = AnyEvent->timer(1, 0, sub { $cv->send(0) });
+my $timer = AnyEvent->timer(after => 1, interval => 0, cb => sub { $cv->send(0) });
 $i3->subscribe({
         window => sub {
             my ($event) = @_;