mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			777 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			777 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <AK/kstdio.h>
 | |
| #include <Kernel/ProcessTracer.h>
 | |
| 
 | |
| ProcessTracer::ProcessTracer(pid_t pid)
 | |
|     : m_pid(pid)
 | |
| {
 | |
| }
 | |
| 
 | |
| ProcessTracer::~ProcessTracer()
 | |
| {
 | |
| }
 | |
| 
 | |
| void ProcessTracer::did_syscall(dword function, dword arg1, dword arg2, dword arg3, dword result)
 | |
| {
 | |
|     CallData data = { function, arg1, arg2, arg3, result };
 | |
|     m_calls.enqueue(data);
 | |
| }
 | |
| 
 | |
| int ProcessTracer::read(FileDescription&, byte* buffer, int buffer_size)
 | |
| {
 | |
|     if (m_calls.is_empty())
 | |
|         return 0;
 | |
|     auto data = m_calls.dequeue();
 | |
|     // FIXME: This should not be an assertion.
 | |
|     ASSERT(buffer_size == sizeof(data));
 | |
|     memcpy(buffer, &data, sizeof(data));
 | |
|     return sizeof(data);
 | |
| }
 | |
| 
 | |
| String ProcessTracer::absolute_path(const FileDescription&) const
 | |
| {
 | |
|     return String::format("tracer:%d", m_pid);
 | |
| }
 | 
