Extend waitfor to except the syntax -s app_signature and wait until

the team with the signature becomes a valid target for BMessages.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33553 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-10-12 14:44:40 +00:00
parent 5762cbce56
commit 206761086b
3 changed files with 61 additions and 43 deletions

View File

@ -50,7 +50,6 @@ StdBinCommands
unchop.c
uptime.cpp
vmstat.cpp
waitfor.c
# whoami.c
: : $(haiku-utils_rsrc) ;
@ -102,6 +101,7 @@ StdBinCommands
setversion.cpp
trash.cpp
version.cpp
waitfor.cpp
WindowShade.cpp
# yes.cpp
: be : $(haiku-utils_rsrc) ;

View File

@ -1,42 +0,0 @@
/* waitfor.c - waits for a given threadname
* (c) 2002, François Revol (mmu_man) for OpenBeOS
* released under the MIT licence.
*
* ChangeLog:
* 04-26-2002 v1.0
* Initial.
*
* waitfor threadname
* thesnooze() time is the same as the original, found using bdb waitfor foobar,
* and stepping until the snooze() call returns, the value is at the push
* instruction just before the call.
*/
#include <OS.h>
#include <stdio.h>
#define SNOOZE_TIME 100000
int main(int argc, char **argv)
{
status_t ret;
if (argc == 2) {
while (find_thread(argv[1]) < 0) {
if ((ret = snooze(SNOOZE_TIME)) < B_OK)
return 1;
}
} else if (argc == 3 && strcmp(argv[1], "-e") == 0) {
while (find_thread(argv[2]) >= 0) {
if ((ret = snooze(SNOOZE_TIME)) < B_OK)
return 1;
}
} else {
fprintf(stderr, "Usage: %s [-e] thread_name\n"
"-e : wait until all threads with that name ended\n", argv[0]);
return 1;
}
return 0;
}

60
src/bin/waitfor.cpp Normal file
View File

@ -0,0 +1,60 @@
/* waitfor.c - waits for a given threadname
* (c) 2002, François Revol (mmu_man) for OpenBeOS
* released under the MIT licence.
*
* ChangeLog:
* 04-26-2002 v1.0
* Initial.
*
* waitfor threadname
* thesnooze() time is the same as the original, found using bdb waitfor foobar,
* and stepping until the snooze() call returns, the value is at the push
* instruction just before the call.
*/
#include <stdio.h>
#include <string.h>
#include <Messenger.h>
#define SNOOZE_TIME 100000
int
main(int argc, char** argv)
{
if (argc == 2) {
while (find_thread(argv[1]) < 0) {
if (snooze(SNOOZE_TIME) != B_OK)
return 1;
}
} else if (argc == 3 && strcmp(argv[1], "-e") == 0) {
while (find_thread(argv[2]) >= 0) {
if (snooze(SNOOZE_TIME) != B_OK)
return 1;
}
} else if (argc == 3 && strcmp(argv[1], "-m") == 0) {
while (true) {
BMessenger messenger(argv[2]);
if (messenger.IsValid())
break;
if (snooze(SNOOZE_TIME) != B_OK)
return 1;
}
} else {
fprintf(stderr,
"Usage:\n"
" %s <thread_name>\n"
" wait until a thread with 'thread_name' has been started.\n\n"
" %s -e <thread_name>\n"
" wait until all threads with thread_name have ended.\n\n"
" %s -m <app_signature>\n"
" wait until the application specified by 'app_signature' is "
"is ready to receive messages.\n", argv[0], argv[0], argv[0]);
return 1;
}
return 0;
}