service: remove deprecated service interface

This commit is contained in:
wwylele 2018-07-27 21:22:15 +03:00
parent 5c52c6e64a
commit 323313b2e9
4 changed files with 0 additions and 151 deletions

View file

@ -28,18 +28,6 @@ inline u32* GetCommandBuffer(const int offset = 0) {
offset);
}
/// Offset into static buffers, relative to command buffer header
static const int kStaticBuffersOffset = 0x100;
/**
* Returns a pointer to the static buffers area in the current thread's TLS
* TODO(Subv): cf. GetCommandBuffer
* @param offset Optional offset into static buffers area (in bytes)
* @return Pointer to static buffers area
*/
inline u32* GetStaticBuffers(const int offset = 0) {
return GetCommandBuffer(kStaticBuffersOffset + offset);
}
} // namespace Kernel
namespace IPC {