Ahem... build fix. Forgot that there were some last minute changes that shouldn't have been part of the commit...
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21773 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -12,19 +12,21 @@
|
|||||||
|
|
||||||
#include <SupportDefs.h>
|
#include <SupportDefs.h>
|
||||||
|
|
||||||
#include <Referenceable.h>
|
|
||||||
|
|
||||||
#include <lock.h>
|
#include <lock.h>
|
||||||
#include <messaging.h>
|
#include <messaging.h>
|
||||||
#include <util/AutoLock.h>
|
|
||||||
#include <util/DoublyLinkedList.h>
|
|
||||||
#include <util/khash.h>
|
#include <util/khash.h>
|
||||||
#include <util/KMessage.h>
|
|
||||||
#include <util/OpenHashTable.h>
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
|
#include <Referenceable.h>
|
||||||
|
|
||||||
|
#include <util/AutoLock.h>
|
||||||
|
#include <util/DoublyLinkedList.h>
|
||||||
|
#include <util/KMessage.h>
|
||||||
|
#include <util/OpenHashTable.h>
|
||||||
|
|
||||||
|
|
||||||
class NotificationService;
|
class NotificationService;
|
||||||
|
|
||||||
class NotificationListener
|
class NotificationListener
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ SubDir HAIKU_TOP src system kernel ;
|
|||||||
SubDirC++Flags $(defines) ;
|
SubDirC++Flags $(defines) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UsePrivateHeaders shared ;
|
||||||
|
|
||||||
AddResources kernel_$(TARGET_ARCH) : kernel.rdef ;
|
AddResources kernel_$(TARGET_ARCH) : kernel.rdef ;
|
||||||
|
|
||||||
KernelMergeObject kernel_core.o :
|
KernelMergeObject kernel_core.o :
|
||||||
@@ -24,6 +26,7 @@ KernelMergeObject kernel_core.o :
|
|||||||
lock.c
|
lock.c
|
||||||
main.c
|
main.c
|
||||||
module.cpp
|
module.cpp
|
||||||
|
Notifications.cpp
|
||||||
port.c
|
port.c
|
||||||
real_time_clock.c
|
real_time_clock.c
|
||||||
scheduler.cpp
|
scheduler.cpp
|
||||||
@@ -68,11 +71,12 @@ KernelLd kernel_$(TARGET_ARCH) :
|
|||||||
|
|
||||||
linkhack.so
|
linkhack.so
|
||||||
|
|
||||||
# kernel libroot parts
|
# kernel parts borrowed from libroot and others
|
||||||
kernel_os_main.o
|
kernel_os_main.o
|
||||||
kernel_os_arch_$(TARGET_ARCH).o
|
kernel_os_arch_$(TARGET_ARCH).o
|
||||||
kernel_posix.o
|
kernel_posix.o
|
||||||
kernel_posix_arch_$(TARGET_ARCH).o
|
kernel_posix_arch_$(TARGET_ARCH).o
|
||||||
|
kernel_misc.o
|
||||||
|
|
||||||
$(HAIKU_STATIC_LIBSUPC++)
|
$(HAIKU_STATIC_LIBSUPC++)
|
||||||
|
|
||||||
|
|||||||
@@ -335,7 +335,7 @@ NotificationManager::UpdateListener(const char* serviceName,
|
|||||||
extern "C" void
|
extern "C" void
|
||||||
notifications_init(void)
|
notifications_init(void)
|
||||||
{
|
{
|
||||||
status_t status = NotificationManager::CreateDefault();
|
status_t status = NotificationManager::CreateManager();
|
||||||
if (status < B_OK) {
|
if (status < B_OK) {
|
||||||
panic("Creating the notification manager failed: %s\n",
|
panic("Creating the notification manager failed: %s\n",
|
||||||
strerror(status));
|
strerror(status));
|
||||||
|
|||||||
Reference in New Issue
Block a user