Opened 7 years ago
Closed 7 years ago
#759 closed defect (fixed)
Incremental build is broken
| Reported by: | Jakub Jermář | Owned by: | Jiří Zárevúcky |
|---|---|---|---|
| Priority: | major | Milestone: | 0.9.1 |
| Component: | helenos-build | Version: | mainline |
| Keywords: | Cc: | ||
| Blocker for: | Depends on: | ||
| See also: |
Description (last modified by )
Incremental build is severely broken. Steps to reproduce:
- build default amd64 profile
- apply the patch below that should result in HelenOS hanging early during boot
- type
makeand watch how only libc gets rebuilt - run HelenOS and watch how HelenOS continues to run normally
- now do
make clean; make - only now the change takes effect and HelenOS hangs as expected
The patch for testing:
diff --git a/uspace/lib/c/generic/async/server.c b/uspace/lib/c/generic/async/server.c
index a75825b1e..41e02f78f 100644
--- a/uspace/lib/c/generic/async/server.c
+++ b/uspace/lib/c/generic/async/server.c
@@ -1024,6 +1024,7 @@ void __async_server_init(void)
errno_t async_accept_0(ipc_call_t *call)
{
+ for(;;);
return ipc_answer_5(call->cap_handle, EOK, 0, 0, 0, 0,
async_get_label());
}
Change History (4)
comment:1 by , 7 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 7 years ago
| Owner: | set to |
|---|---|
| Status: | new → accepted |
comment:3 by , 7 years ago
| Milestone: | 0.8.0 → 0.9.1 |
|---|
comment:4 by , 7 years ago
| Resolution: | → fixed |
|---|---|
| Status: | accepted → closed |
Note:
See TracTickets
for help on using tickets.

Not exactly sure if it's something I originally missed, or if some change regressed later. Either way, fixed via commit 3d7594.