mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:02:44 +00:00 
			
		
		
		
	 a91589c09b
			
		
	
	
		a91589c09b
		
	
	
	
	
		
			
			The ProcFS is an utter mess currently, so let's start move things that are not related to processes-info. To ensure it's done in a sane manner, we start by duplicating all /proc/ global nodes to the /sys/kernel/ directory, then we will move Userland to use the new directory so the old directory nodes can be removed from the /proc directory.
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/CircularQueue.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <Kernel/Devices/CharacterDevice.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| extern Spinlock g_console_lock;
 | |
| 
 | |
| class ConsoleDevice final : public CharacterDevice {
 | |
|     friend class DeviceManagement;
 | |
| 
 | |
| public:
 | |
|     static NonnullLockRefPtr<ConsoleDevice> must_create();
 | |
| 
 | |
|     virtual ~ConsoleDevice() override;
 | |
| 
 | |
|     // ^CharacterDevice
 | |
|     virtual bool can_read(Kernel::OpenFileDescription const&, u64) const override;
 | |
|     virtual bool can_write(Kernel::OpenFileDescription const&, u64) const override { return true; }
 | |
|     virtual ErrorOr<size_t> read(OpenFileDescription&, u64, Kernel::UserOrKernelBuffer&, size_t) override;
 | |
|     virtual ErrorOr<size_t> write(OpenFileDescription&, u64, Kernel::UserOrKernelBuffer const&, size_t) override;
 | |
|     virtual StringView class_name() const override { return "Console"sv; }
 | |
| 
 | |
|     void put_char(char);
 | |
| 
 | |
|     CircularQueue<char, 16384> const& logbuffer() const { return m_logbuffer; }
 | |
| 
 | |
| private:
 | |
|     ConsoleDevice();
 | |
|     CircularQueue<char, 16384> m_logbuffer;
 | |
| };
 | |
| 
 | |
| }
 |