mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:42:44 +00:00 
			
		
		
		
	This reverts commit e95eb7a51d.
This is causing some sort of list corruption, as evident by #7313
I haven't been able to figure it out yet, so lets revert this change
until I can figure out what's going on.
		
	
			
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/InlineLinkedList.h>
 | |
| #include <AK/RefCounted.h>
 | |
| #include <AK/Weakable.h>
 | |
| #include <Kernel/Lock.h>
 | |
| #include <Kernel/SpinLock.h>
 | |
| #include <Kernel/UnixTypes.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class ProcessGroup
 | |
|     : public RefCounted<ProcessGroup>
 | |
|     , public Weakable<ProcessGroup>
 | |
|     , public InlineLinkedListNode<ProcessGroup> {
 | |
| 
 | |
|     AK_MAKE_NONMOVABLE(ProcessGroup);
 | |
|     AK_MAKE_NONCOPYABLE(ProcessGroup);
 | |
| 
 | |
|     friend InlineLinkedListNode<ProcessGroup>;
 | |
| 
 | |
| public:
 | |
|     ~ProcessGroup();
 | |
| 
 | |
|     static RefPtr<ProcessGroup> create(ProcessGroupID);
 | |
|     static RefPtr<ProcessGroup> find_or_create(ProcessGroupID);
 | |
|     static RefPtr<ProcessGroup> from_pgid(ProcessGroupID);
 | |
| 
 | |
|     const ProcessGroupID& pgid() const { return m_pgid; }
 | |
| 
 | |
| private:
 | |
|     ProcessGroup(ProcessGroupID pgid)
 | |
|         : m_pgid(pgid)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     ProcessGroup* m_prev { nullptr };
 | |
|     ProcessGroup* m_next { nullptr };
 | |
| 
 | |
|     ProcessGroupID m_pgid;
 | |
| };
 | |
| 
 | |
| extern InlineLinkedList<ProcessGroup>* g_process_groups;
 | |
| extern RecursiveSpinLock g_process_groups_lock;
 | |
| 
 | |
| }
 |