⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log.c

📁 讲述linux的初始化过程
💻 C
字号:
   /* * * Copyright (C) Eicon Technology Corporation, 2000. * * This source file is supplied for the exclusive use with Eicon * Technology Corporation's range of DIVA Server Adapters. * * Eicon File Revision :    1.5   * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY OF ANY KIND WHATSOEVER INCLUDING ANY  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * *//* * Source file for diva log facility */#include "sys.h"#include "idi.h"#include "divas.h"#include "adapter.h"#include "divalog.h"#include "uxio.h"/*Counter to monitor number of messages */ static int m_count; #define     MAX_BUFFERED_MSGS   (1000)/* Our Linked List Structure to hold message */typedef struct klog_link{  klog_t klog;  struct klog_link *next;}KNODE;/* First & Last structures in list*/KNODE *head;KNODE *tail;/*  * retrieve message from FIFO buffer * returns NULL if buffer empty * otherwise returns pointer to entry  */char	*DivasLogFifoRead(void){	KNODE *old_head;	if(head==NULL) 	{		/* Buffer Empty - No Messages */		return NULL;		}	m_count--;	/* Keep track of message to be read & increment to next message*/	old_head = head;	head = head->next;    /*Return ptr to Msg */	    return((char *)old_head);}/*  * write message into FIFO buffer */void	DivasLogFifoWrite(char *entry, int length){    KNODE *new_klog;    if(head == NULL)     {	/* No Entries in Log */	tail=NULL;	m_count=0;	new_klog=UxAlloc(sizeof(KNODE));	if(new_klog==NULL)	{		return;	}	m_count++;	bzero(new_klog,sizeof(KNODE));	/* Set head & tail to point to the new Msg Struct */	head=tail=new_klog;	tail->next=NULL;    }    else    {	new_klog=UxAlloc(sizeof(KNODE));		if(new_klog==NULL)	{		return;	}	m_count++;	bzero(new_klog,sizeof(KNODE));	/* Let last Msg Struct point to new Msg Struct & inc tail */	tail->next=new_klog;	tail=new_klog;	tail->next=NULL;    }    if (length > sizeof(klog_t))    {        length = sizeof(klog_t);    }    bcopy(entry,&tail->klog,length);    return;}/* * DivaslogFifoEmpty:return TRUE if FIFO buffer is empty,otherwise FALSE */int DivasLogFifoEmpty(void){	return (m_count == 0);}/* *DivasLogFifoFull:return TRUE if FIFO buffer is full,otherwise FALSE */int DivasLogFifoFull(void){	return (m_count == MAX_BUFFERED_MSGS);}/* * generate an IDI log entry */void	DivasLogIdi(card_t *card, ENTITY *e, int request){	klog_t		klog;	bzero(&klog, sizeof(klog));	klog.time_stamp = UxTimeGet();	klog.length = sizeof(ENTITY) > sizeof(klog.buffer) ?						sizeof(klog.buffer) : sizeof(ENTITY);	klog.card = (int) (card - DivasCards);	klog.type = request ? KLOG_IDI_REQ : KLOG_IDI_CALLBACK;	klog.code = 0;	bcopy(e, klog.buffer, klog.length);    /* send to the log driver and return */    DivasLogAdd(&klog, sizeof(klog));	return;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -