Changeset 536ec42 in mainline


Ignore:
Timestamp:
2008-06-03T15:10:53Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a4b4b47
Parents:
2f65fb0
Message:

disable kernel console output for now
(this breaks some archs)

Location:
uspace/srv/fb
Files:
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fb/main.c

    r2f65fb0 r536ec42  
    3434#include <align.h>
    3535#include <errno.h>
     36#include <stdio.h>
    3637
    3738#include "fb.h"
    38 #include "sysio.h"
    3939#include "ega.h"
    4040#include "main.h"
     41
     42#define NAME "fb"
    4143
    4244void receive_comm_area(ipc_callid_t callid, ipc_call_t *call, void **area)
     
    5456int main(int argc, char *argv[])
    5557{
     58        printf(NAME ": HelenOS Framebuffer service\n");
     59       
    5660        ipcarg_t phonead;
    5761        int initialized = 0;
     
    7175
    7276        if (!initialized)
    73                 sysio_init();
     77                return -1;
    7478
    7579        if (ipc_connect_to_me(PHONE_NS, SERVICE_VIDEO, 0, 0, &phonead) != 0)
    7680                return -1;
    7781       
     82        printf(NAME ": Accepting connections\n");
    7883        async_manager();
    7984        /* Never reached */
Note: See TracChangeset for help on using the changeset viewer.