mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:22:43 +00:00 
			
		
		
		
	Kernel: More work towards POSIX SHM, also add ftruncate().
This commit is contained in:
		
							parent
							
								
									99f3cc26c3
								
							
						
					
					
						commit
						26a06f3fcd
					
				
					 10 changed files with 92 additions and 1 deletions
				
			
		|  | @ -2468,3 +2468,14 @@ int Process::sys$shm_unlink(const char* name) | |||
|         return -EFAULT; | ||||
|     return -ENOTIMPL; | ||||
| } | ||||
| 
 | ||||
| int Process::sys$ftruncate(int fd, off_t length) | ||||
| { | ||||
|     auto* descriptor = file_descriptor(fd); | ||||
|     if (!descriptor) | ||||
|         return -EBADF; | ||||
|     // FIXME: Check that fd is writable, otherwise EINVAL.
 | ||||
|     if (!descriptor->is_file() && !descriptor->is_shared_memory()) | ||||
|         return -EINVAL; | ||||
|     return descriptor->truncate(length); | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling