mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 12:34:39 +08:00 
			
		
		
		
	Kernel: Remove Object::GetHandle (it's not used anymore :D)
This commit is contained in:
		
							parent
							
								
									869ec46683
								
							
						
					
					
						commit
						5354a479bc
					
				@ -76,13 +76,10 @@ ResultVal<Handle> HandleTable::Create(SharedPtr<Object> obj) {
 | 
			
		||||
    // CTR-OS doesn't use generation 0, so skip straight to 1.
 | 
			
		||||
    if (next_generation >= (1 << 15)) next_generation = 1;
 | 
			
		||||
 | 
			
		||||
    Handle handle = generation | (slot << 15);
 | 
			
		||||
    if (obj->handle == INVALID_HANDLE)
 | 
			
		||||
        obj->handle = handle;
 | 
			
		||||
 | 
			
		||||
    generations[slot] = generation;
 | 
			
		||||
    objects[slot] = std::move(obj);
 | 
			
		||||
 | 
			
		||||
    Handle handle = generation | (slot << 15);
 | 
			
		||||
    return MakeResult<Handle>(handle);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -58,14 +58,9 @@ enum {
 | 
			
		||||
    DEFAULT_STACK_SIZE  = 0x4000,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
class HandleTable;
 | 
			
		||||
 | 
			
		||||
class Object : NonCopyable {
 | 
			
		||||
    friend class HandleTable;
 | 
			
		||||
    u32 handle = INVALID_HANDLE;
 | 
			
		||||
public:
 | 
			
		||||
    virtual ~Object() {}
 | 
			
		||||
    Handle GetHandle() const { return handle; }
 | 
			
		||||
 | 
			
		||||
    /// Returns a unique identifier for the object. For debugging purposes only.
 | 
			
		||||
    unsigned int GetObjectId() const { return object_id; }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user