Subversion Repositories HelenOS

Rev

Rev 4457 | Rev 4548 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4457 Rev 4528
Line 52... Line 52...
52
#include <kernel/errno.h>
52
#include <kernel/errno.h>
53
#include <kernel/genarch/fb/visuals.h>
53
#include <kernel/genarch/fb/visuals.h>
54
#include <io/color.h>
54
#include <io/color.h>
55
#include <io/style.h>
55
#include <io/style.h>
56
#include <async.h>
56
#include <async.h>
-
 
57
#include <fibril.h>
57
#include <bool.h>
58
#include <bool.h>
58
 
59
 
59
#include "font-8x16.h"
60
#include "font-8x16.h"
60
#include "fb.h"
61
#include "fb.h"
61
#include "main.h"
62
#include "main.h"
Line 1036... Line 1037...
1036
 * @param call   Current call data
1037
 * @param call   Current call data
1037
 * @param vp     Active viewport
1038
 * @param vp     Active viewport
1038
 *
1039
 *
1039
 * @return false if the call was not handled byt this function, true otherwise
1040
 * @return false if the call was not handled byt this function, true otherwise
1040
 *
1041
 *
1041
 * Note: this function is not threads safe, you would have
1042
 * Note: this function is not thread-safe, you would have
1042
 * to redefine static variables with __thread
1043
 * to redefine static variables with fibril_local.
1043
 *
1044
 *
1044
 */
1045
 */
1045
static bool shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1046
static bool shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1046
{
1047
{
1047
    static keyfield_t *interbuffer = NULL;
1048
    static keyfield_t *interbuffer = NULL;