Home | History | Annotate | Download | only in ia64

Lines Matching refs:note

90 	struct op_note note;
96 note.pid = current->pid;
97 note.tgid = op_get_tgid();
98 note.addr = addr;
99 note.len = len;
100 note.offset = offset;
101 note.type = is_execve ? OP_EXEC : OP_MAP;
102 note.hash = hash_path(file);
103 if (note.hash == -1)
105 oprof_put_note(&note);
238 struct op_note note;
240 note.type = OP_FORK;
241 note.pid = old_pid;
242 note.tgid = old_tgid;
243 note.addr = new_pid;
244 note.len = new_tgid;
245 oprof_put_note(&note);
291 struct op_note note;
293 note.type = OP_DROP_MODULES;
294 oprof_put_note(&note);
302 struct op_note note;
306 note.addr = current->times.tms_utime;
307 note.len = current->times.tms_stime;
308 note.offset = current->start_time;
309 note.type = OP_EXIT;
310 note.pid = current->pid;
311 note.tgid = op_get_tgid();
312 oprof_put_note(&note);