Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1649 → Rev 1648

/uspace/trunk/console/console.c
25,14 → 25,6
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup console Console
* @brief HelenOS console.
* @{
*/
/** @file
*/
 
/* TODO: remove */
#include <stdio.h>
 
515,7 → 507,4
 
return 0;
}
/** @}
*/
 
/uspace/trunk/console/gcons.c
26,12 → 26,6
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#include <ipc/fb.h>
#include <ipc/ipc.h>
#include <async.h>
428,7 → 422,3
console_state[KERNEL_CONSOLE] = CONS_KERNEL;
gcons_redraw_console();
}
/** @}
*/
 
/uspace/trunk/console/screenbuffer.h
26,12 → 26,6
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#ifndef __SCREENBUFFER_H__
#define __SCREENBUFFER_H__
 
63,7 → 57,7
 
/** Returns keyfield for position on screen. Screenbuffer->buffer is cyclic buffer so we must couted in index of the topmost line.
* @param scr screenbuffer
* @param x position on screen
* @oaram x position on screen
* @param y position on screen
* @return keyfield structure with character and its attributes on x,y
*/
94,7 → 88,3
 
#endif
 
/** @}
*/
 
/uspace/trunk/console/gcons.h
26,12 → 26,6
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#ifndef _GCONS_H_
#define _GCONS_H_
 
43,7 → 37,3
void gcons_notify_disconnect(int consnum);
 
#endif
/** @}
*/
 
/uspace/trunk/console/console.h
26,12 → 26,6
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#ifndef __CONSOLE_H__
#define __CONSOLE_H__
 
50,7 → 44,3
 
#endif
 
/** @}
*/
 
/uspace/trunk/console/screenbuffer.c
26,12 → 26,6
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#include <screenbuffer.h>
#include <malloc.h>
#include <unistd.h>
139,7 → 133,3
scr->style.bg_color = bg_color;
}
 
/** @}
*/