user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH 01/12] ipc: remove {-reap_async} field
  2023-01-17  7:18  6% [PATCH 00/12] improve process reaping Eric Wong
@ 2023-01-17  7:19  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2023-01-17  7:19 UTC (permalink / raw)
  To: meta

We can just test for {-reap_do}, instead to save us a few bytes.
---
 lib/PublicInbox/IPC.pm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lib/PublicInbox/IPC.pm b/lib/PublicInbox/IPC.pm
index 74862673..671ad5d5 100644
--- a/lib/PublicInbox/IPC.pm
+++ b/lib/PublicInbox/IPC.pm
@@ -150,7 +150,6 @@ sub ipc_worker_reap { # dwaitpid callback
 sub wq_wait_async {
 	my ($self, $cb, @uargs) = @_;
 	local $PublicInbox::DS::in_loop = 1;
-	$self->{-reap_async} = 1;
 	$self->{-reap_do} = $cb;
 	my @pids = keys %{$self->{-wq_workers}};
 	dwaitpid($_, \&ipc_worker_reap, [ $self, @uargs ]) for @pids;
@@ -350,7 +349,7 @@ sub wq_do {
 
 sub prepare_nonblock {
 	($_[0]->{-wq_s1} // die 'BUG: no {-wq_s1}')->blocking(0);
-	$_[0]->{-reap_async} or die 'BUG: {-reap_async} needed for nonblock';
+	$_[0]->{-reap_do} or die 'BUG: {-reap_do} needed for nonblock';
 	require PublicInbox::WQBlocked;
 }
 
@@ -424,11 +423,11 @@ sub wq_workers_start {
 sub wq_close {
 	my ($self) = @_;
 	if (my $wqb = delete $self->{wqb}) {
-		$self->{-reap_async} or die 'BUG: {-reap_async} unset';
+		$self->{-reap_do} or die 'BUG: {-reap_do} unset';
 		$wqb->enq_close;
 	}
 	delete @$self{qw(-wq_s1 -wq_s2)} or return;
-	return if $self->{-reap_async};
+	return if $self->{-reap_do};
 	my @pids = keys %{$self->{-wq_workers}};
 	dwaitpid($_, \&ipc_worker_reap, [ $self ]) for @pids;
 }

^ permalink raw reply related	[relevance 7%]

* [PATCH 00/12] improve process reaping
@ 2023-01-17  7:18  6% Eric Wong
  2023-01-17  7:19  7% ` [PATCH 01/12] ipc: remove {-reap_async} field Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2023-01-17  7:18 UTC (permalink / raw)
  To: meta

dwaitpid was implemented under the assumption our code could
eventually use a multithreaded Perl 5.  Since the threads(3perl)
manpage officially discourages threads, that assumption proved
false.  This series saves syscalls and improves ergonomics of
our internal APIs, data structures and code a small bit.

Eric Wong (12):
  ipc: remove {-reap_async} field
  t/solver_git.t: fix test message
  qspawn: drop {psgi_env} deref
  ds: introduce awaitpid, switch ProcessPipe users
  git|gcf2: switch to awaitpid
  watch: switch to awaitpid
  watch: simplify internal data structures
  eofpipe: drop {arg} support for now
  watch: IMAP and NNTP polling can use the same interval
  ipc: drop unused $args from ->ipc_worker_stop
  ipc+lei: switch to awaitpid
  ds: drop dwaitpid, switch to waitpid(-1)

 Documentation/technical/ds.txt |  2 +-
 lib/PublicInbox/DS.pm          | 69 ++++++++++++------------
 lib/PublicInbox/Daemon.pm      |  2 +-
 lib/PublicInbox/EOFpipe.pm     | 10 ++--
 lib/PublicInbox/Gcf2Client.pm  |  5 +-
 lib/PublicInbox/Git.pm         | 10 ++--
 lib/PublicInbox/IPC.pm         | 39 +++++++-------
 lib/PublicInbox/LEI.pm         |  8 ++-
 lib/PublicInbox/LeiConvert.pm  |  2 +-
 lib/PublicInbox/LeiInput.pm    |  2 +-
 lib/PublicInbox/LeiMirror.pm   |  7 ++-
 lib/PublicInbox/LeiStore.pm    |  7 ++-
 lib/PublicInbox/LeiToMail.pm   | 11 ++--
 lib/PublicInbox/LeiUp.pm       |  5 +-
 lib/PublicInbox/LeiXSearch.pm  |  9 ++--
 lib/PublicInbox/ProcessPipe.pm | 42 +++++++--------
 lib/PublicInbox/Qspawn.pm      | 61 ++++++++++-----------
 lib/PublicInbox/Spawn.pm       |  6 +--
 lib/PublicInbox/Watch.pm       | 96 ++++++++++++----------------------
 script/public-inbox-clone      |  2 +-
 t/solver_git.t                 |  2 +-
 t/spawn.t                      | 12 +++--
 22 files changed, 186 insertions(+), 223 deletions(-)

^ permalink raw reply	[relevance 6%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2023-01-17  7:18  6% [PATCH 00/12] improve process reaping Eric Wong
2023-01-17  7:19  7% ` [PATCH 01/12] ipc: remove {-reap_async} field Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).