为“gdt_flush”指定的存储类别

发布于 2024-12-23 17:33:47 字数 471 浏览 0 评论 0原文

我正在编写一个需要与一些外部汇编器函数交互的操作系统。我将声明放在标题中:

namespace Kernel
{
    class DescriptorTables
    {
        public:
        void init();
        void gdt_set_gate(s32int,u32int,u32int,u8int,u8int);
        private:
        extern void gdt_flush(u32int);
        struct gdt_entry_struct
        {
        //...

当代码运行时,它会产生

DescriptorTables.h:10:31:错误:为“gdt_flush”指定存储类

我以前从未见过此错误,关于如何解决此问题有什么想法吗?

I am writing a operating system that needs to interface with some external assembler functions. I put the declaration in the header:

namespace Kernel
{
    class DescriptorTables
    {
        public:
        void init();
        void gdt_set_gate(s32int,u32int,u32int,u8int,u8int);
        private:
        extern void gdt_flush(u32int);
        struct gdt_entry_struct
        {
        //...

When the code is ran, it produces

DescriptorTables.h:10:31: error: storage class specified for 'gdt_flush'

I have never seen this error before, Any ideas on how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿哥们儿 2024-12-30 17:33:47
    extern void gdt_flush(u32int);

你不能在类中这样说 externextern 是一个存储类,它解释了您所看到的消息。

    extern void gdt_flush(u32int);

You can't say extern like that within a class. extern is a storage class, which explains the message you're seeing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文