reproduceable testcase for bug #1168

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20801 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2007-04-24 21:41:24 +00:00
parent 4b5f535142
commit 099c5d288c
1 changed files with 3 additions and 1 deletions

View File

@ -70,7 +70,9 @@ driver_open(const char *name, uint32 flags, void** _cookie)
static status_t
driver_close(void* cookie)
{
dprintf("test: close\n");
dprintf("test: close enter\n");
snooze(200000);
dprintf("test: close leave\n");
return B_OK;
}