git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix: corrected time conversion on alarm/sleep syscall
[lunaix-os.git]
/
lunaix-os
/
kernel
/
process
/
task_attr.c
diff --git
a/lunaix-os/kernel/process/task_attr.c
b/lunaix-os/kernel/process/task_attr.c
index 7c954b30ea9c3a44510885d0e389dbd8de379c05..1cca227937fdbc980ae9e9703118ee3f80e11cd5 100644
(file)
--- a/
lunaix-os/kernel/process/task_attr.c
+++ b/
lunaix-os/kernel/process/task_attr.c
@@
-5,14
+5,14
@@
void
__read_pending_sig(struct twimap* map)
{
struct proc_info* proc = twimap_data(map, struct proc_info*);
__read_pending_sig(struct twimap* map)
{
struct proc_info* proc = twimap_data(map, struct proc_info*);
- twimap_printf(map, "%bb", proc->sig_pending);
+ twimap_printf(map, "%bb", proc->sig
ctx.sig
_pending);
}
void
__read_masked_sig(struct twimap* map)
{
struct proc_info* proc = twimap_data(map, struct proc_info*);
}
void
__read_masked_sig(struct twimap* map)
{
struct proc_info* proc = twimap_data(map, struct proc_info*);
- twimap_printf(map, "%bb", proc->sig_mask);
+ twimap_printf(map, "%bb", proc->sig
ctx.sig
_mask);
}
void
}
void