[Title]change boilerplate
authormunkyu.im <munkyu.im@samsung.com>
Thu, 15 Dec 2011 12:04:06 +0000 (21:04 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Thu, 15 Dec 2011 12:04:06 +0000 (21:04 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

69 files changed:
AUTHOR
debug_ch.c [deleted file]
debug_ch.h [deleted file]
hw/virtio-gpi.c
sdb.c
target-i386/helper_gpi.c
tizen/AUTHOR
tizen/hw/svcamera_linux.c
tizen/hw/svcamera_pci.c
tizen/hw/tizen-codec.h
tizen/src/about_version.h
tizen/src/arch_arm.c
tizen/src/arch_x86.c
tizen/src/command.c
tizen/src/command.h
tizen/src/compass.c
tizen/src/compass.h
tizen/src/configuration.c
tizen/src/configuration.h
tizen/src/dbi_parser.c
tizen/src/dbi_parser.h
tizen/src/debug_ch.c
tizen/src/debug_ch.h
tizen/src/debug_ch_vtm.c
tizen/src/defines.h
tizen/src/dialog.c
tizen/src/dialog.h
tizen/src/emulator.c [changed mode: 0755->0644]
tizen/src/emulator.h
tizen/src/emulsignal.c
tizen/src/emulsignal.h
tizen/src/event_handler.c [changed mode: 0755->0644]
tizen/src/event_handler.h
tizen/src/extern.h
tizen/src/fileio.c
tizen/src/fileio.h
tizen/src/gps.c
tizen/src/gps.h
tizen/src/gpsnew.c
tizen/src/gpsnew.h
tizen/src/menu.c
tizen/src/menu.h
tizen/src/menu_callback.c [changed mode: 0755->0644]
tizen/src/menu_callback.h
tizen/src/option.c
tizen/src/option.h
tizen/src/option_callback.c
tizen/src/option_callback.h
tizen/src/process.c
tizen/src/process.h
tizen/src/qemu_gtk_widget.c [changed mode: 0755->0644]
tizen/src/qemu_gtk_widget.h [changed mode: 0755->0644]
tizen/src/screen_shot.c
tizen/src/screen_shot.h
tizen/src/sensor_server.c
tizen/src/sensor_server.h
tizen/src/tools.c
tizen/src/tools.h
tizen/src/ui_imageid.h
tizen/src/utils.c
tizen/src/utils.h
tizen/src/vinit_process.c
tizen/src/vinit_process.h
tizen/src/vt_utils.c
tizen/src/vt_utils.h
tizen/src/vtm.c
tizen/src/vtm.h
vl.c
vl.h

diff --git a/AUTHOR b/AUTHOR
index ea19f2a..89e83c9 100644 (file)
--- a/AUTHOR
+++ b/AUTHOR
@@ -1,11 +1,13 @@
-DongKyun Yun <dk77.yun@samsung.com>\r
+HyunGoo Kang <hyungoo1.kang@samsung.com>\r
 DoHyung Hong <don.hong@samsung.com>\r
 SeokYeon Hwang <syeon.hwang@samsung.com>\r
-JinKyu Kim <fredrick.kim@samsung.com>\r
+Hyunjun Son <hj79.son@samsung.com>\r
+SangJin Kim <sangjin3.kim@samsung.com>\r
 KiTae Kim <kt920.kim@samsung.com>\r
 JinHyung Jo <jinhyung.jo@samsung.com>\r
-YuYeon Oh <yuyeon.oh@samsung.com>\r
-WooJin Jung <woojin2.jung@samsung.com>\r
 SungMin Ha <sungmin82.ha@samsung.com>\r
 MunKyu Im <munkyu.im@samsung.com>\r
-HyunGoo Kang <hyungoo1.kang@samsung.com>\r
+JiHye Kim <jihye1128.kim@samsung.com>\r
+GiWoong Kim <giwoong.kim@samsung.com>\r
+YeongKyoon Lee <yeongkyoon.lee@samsung.com\r
+DongKyun Yun <dk77.yun@samsung.com>\r
diff --git a/debug_ch.c b/debug_ch.c
deleted file mode 100755 (executable)
index c52c58d..0000000
+++ /dev/null
@@ -1,398 +0,0 @@
-/**
- * @file       debug_ch.c
- * @brief      Management of the debugging channels
- *
- * @author
- * @date
- * @attention
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdarg.h>
-#include <string.h>
-#include <assert.h>
-#include <unistd.h>
-#include "debug_ch.h"
-
-static inline int interlocked_xchg_add( int *dest, int incr )
-{
-       int ret;
-       __asm__ __volatile__( "lock; xaddl %0,(%1)"
-                       : "=r" (ret) : "r" (dest), "0" (incr) : "memory" );
-       return ret;
-}
-
-static const char * const debug_classes[] = {"fixme", "err", "warn", "trace", "info"};
-
-#define MAX_DEBUG_OPTIONS 256
-
-//static unsigned char default_flags = (1 << __DBCL_ERR) | (1 << __DBCL_FIXME) | (1 << __DBCL_INFO);
-static unsigned char default_flags = (1 << __DBCL_ERR)  | (1 << __DBCL_INFO);
-static int nb_debug_options = -1;
-static struct _debug_channel debug_options[MAX_DEBUG_OPTIONS];
-
-static void debug_init(void);
-
-static int cmp_name( const void *p1, const void *p2 )
-{
-       const char *name = p1;
-       const struct _debug_channel *chan = p2;
-       return strcmp( name, chan->name );
-}
-
-/* get the flags to use for a given channel, possibly setting them too in case of lazy init */
-unsigned char _dbg_get_channel_flags( struct _debug_channel *channel )
-{
-       if (nb_debug_options == -1)
-               debug_init();
-
-       if(nb_debug_options){
-               struct _debug_channel *opt;
-
-               /* first check for multi channel */
-               opt = bsearch( channel->multiname,
-                               debug_options,
-                               nb_debug_options,
-                               sizeof(debug_options[0]), cmp_name );
-               if (opt)
-                       return opt->flags;
-
-               opt = bsearch( channel->name,
-                               debug_options,
-                               nb_debug_options,
-                               sizeof(debug_options[0]), cmp_name );
-               if (opt){
-                       return opt->flags;
-               }
-       }
-
-       /* no option for this channel */
-       if (channel->flags & (1 << __DBCL_INIT))
-               channel->flags = default_flags;
-
-       return default_flags;
-}
-
-/* set the flags to use for a given channel; return 0 if the channel is not available to set */
-int _dbg_set_channel_flags( struct _debug_channel *channel,
-               unsigned char set, unsigned char clear )
-{
-       if (nb_debug_options == -1)
-               debug_init();
-
-       if (nb_debug_options){
-               struct _debug_channel *opt;
-
-               /* first set for multi channel */
-               opt = bsearch( channel->multiname,
-                               debug_options,
-                               nb_debug_options,
-                               sizeof(debug_options[0]), cmp_name );
-               if (opt){
-                       opt->flags = (opt->flags & ~clear) | set;
-                       return 1;
-               }
-
-               opt = bsearch( channel->name,
-                               debug_options,
-                               nb_debug_options,
-                               sizeof(debug_options[0]), cmp_name );
-               if (opt){
-                       opt->flags = (opt->flags & ~clear) | set;
-                       return 1;
-               }
-       }
-       return 0;
-}
-
-/* add a new debug option at the end of the option list */
-static void add_option( const char *name, unsigned char set, unsigned char clear )
-{
-       int min = 0, max = nb_debug_options - 1, pos, res;
-
-       if (!name[0])  /* "all" option */
-       {
-               default_flags = (default_flags & ~clear) | set;
-               return;
-       }
-
-       if (strlen(name) >= sizeof(debug_options[0].name))
-               return;
-
-       while (min <= max)
-       {
-               pos = (min + max) / 2;
-               res = strcmp( name, debug_options[pos].name );
-               if (!res)
-               {
-                       debug_options[pos].flags = (debug_options[pos].flags & ~clear) | set;
-                       return;
-               }
-               if (res < 0)
-                       max = pos - 1;
-               else
-                       min = pos + 1;
-       }
-       if (nb_debug_options >= MAX_DEBUG_OPTIONS)
-               return;
-
-       pos = min;
-       if (pos < nb_debug_options) {
-               memmove( &debug_options[pos + 1],
-                               &debug_options[pos],
-                               (nb_debug_options - pos) * sizeof(debug_options[0]) );
-       }
-
-       strcpy( debug_options[pos].name, name );
-       debug_options[pos].flags = (default_flags & ~clear) | set;
-       nb_debug_options++;
-}
-
-/* parse a set of debugging option specifications and add them to the option list */
-static void parse_options( const char *str )
-{
-       char *opt, *next, *options;
-       unsigned int i;
-
-       if (!(options = strdup(str)))
-               return;
-       for (opt = options; opt; opt = next)
-       {
-               const char *p;
-               unsigned char set = 0, clear = 0;
-
-               if ((next = strchr( opt, ',' )))
-                       *next++ = 0;
-
-               p = opt + strcspn( opt, "+-" );
-               if (!p[0])
-                       p = opt;  /* assume it's a debug channel name */
-
-               if (p > opt)
-               {
-                       for (i = 0; i < sizeof(debug_classes)/sizeof(debug_classes[0]); i++)
-                       {
-                               int len = strlen(debug_classes[i]);
-                               if (len != (p - opt))
-                                       continue;
-                               if (!memcmp( opt, debug_classes[i], len ))  /* found it */
-                               {
-                                       if (*p == '+')
-                                               set |= 1 << i;
-                                       else
-                                               clear |= 1 << i;
-                                       break;
-                               }
-                       }
-                       if (i == sizeof(debug_classes)/sizeof(debug_classes[0])) /* bad class name, skip it */
-                               continue;
-               }
-               else
-               {
-                       if (*p == '-')
-                               clear = ~0;
-                       else
-                               set = ~0;
-               }
-               if (*p == '+' || *p == '-')
-                       p++;
-               if (!p[0])
-                       continue;
-
-               if (!strcmp( p, "all" ))
-                       default_flags = (default_flags & ~clear) | set;
-               else
-                       add_option( p, set, clear );
-       }
-       free( options );
-}
-
-/* print the usage message */
-static void debug_usage(void)
-{
-       static const char usage[] =
-               "Syntax of the DEBUGCH variable:\n"
-               "  DEBUGCH=[class]+xxx,[class]-yyy,...\n\n"
-               "Example: DEBUGCH=+all,warn-heap\n"
-               "    turns on all messages except warning heap messages\n"
-               "Available message classes: err, warn, fixme, trace\n";
-       const int ret = write( 2, usage, sizeof(usage) - 1 );
-       assert(ret >= 0);
-       exit(1);
-}
-
-/* initialize all options at startup */
-static void debug_init(void)
-{
-       char *debug = NULL;
-       FILE *fp = NULL;
-       char *tmp = NULL;
-
-       if (nb_debug_options != -1)
-               return;  /* already initialized */
-
-       nb_debug_options = 0;
-
-       fp= fopen("./DEBUGCH", "r");
-       if( fp == NULL){
-               debug = getenv("DEBUGCH");
-       }else{
-               if ((tmp= (char *)malloc(1024 + 1)) == NULL){
-                       fclose(fp);
-                       return;
-               }
-
-               fseek(fp, 0, SEEK_SET);
-               const char* str = fgets(tmp, 1024, fp);
-               if (str) {
-                       tmp[strlen(tmp)-1] = 0;
-                       debug = tmp;
-               }
-
-               fclose(fp);
-       }
-
-       if( debug != NULL ){
-               if (!strcmp( debug, "help" ))
-                       debug_usage();
-               parse_options( debug );
-       }
-
-       if( tmp != NULL ){
-               free(tmp);
-       }
-}
-
-/* allocate some tmp string space */
-/* FIXME: this is not 100% thread-safe */
-char *get_dbg_temp_buffer( size_t size )
-{
-       static char *list[32];
-       static int pos;
-       char *ret;
-       int idx;
-
-       idx = interlocked_xchg_add( &pos, 1 ) % (sizeof(list)/sizeof(list[0]));
-
-       if ((ret = realloc( list[idx], size )))
-               list[idx] = ret;
-
-       return ret;
-}
-
-/* release unused part of the buffer */
-void release_dbg_temp_buffer( char *buffer, size_t size )
-{
-       /* don't bother doing anything */
-       (void)( buffer );
-       (void)( size );
-}
-
-static int dbg_vprintf( const char *format, va_list args )
-{
-       int ret = vfprintf( stderr, format, args );
-
-       fflush(stderr);
-       return ret;
-}
-
-int dbg_printf( const char *format, ... )
-{
-       int ret;
-       va_list valist;
-
-       // lock
-
-       va_start(valist, format);
-       ret = dbg_vprintf( format, valist );
-       va_end(valist);
-
-       fprintf(stderr, "\n");
-       // unlock
-
-       return ret;
-}
-
-int dbg_printf_nonewline( const char *format, ... )
-{
-       int ret;
-       va_list valist;
-
-       va_start(valist, format);
-       ret = dbg_vprintf( format, valist );
-       va_end(valist);
-
-       return ret;
-}
-
-/* printf with temp buffer allocation */
-const char *dbg_sprintf( const char *format, ... )
-{
-       static const int max_size = 200;
-       char *ret;
-       int len;
-       va_list valist;
-
-       va_start(valist, format);
-       ret = get_dbg_temp_buffer( max_size );
-       len = vsnprintf( ret, max_size, format, valist );
-       if (len == -1 || len >= max_size)
-               ret[max_size-1] = 0;
-       else
-               release_dbg_temp_buffer( ret, len + 1 );
-       va_end(valist);
-       return ret;
-}
-
-/* default implementation of dbg_vlog */
-static int dbg_vlog( enum _debug_class cls, struct _debug_channel *channel,
-               const char *format, va_list args )
-{
-       int ret = 0;
-
-       if (cls < sizeof(debug_classes)/sizeof(debug_classes[0])) {
-               (void)(channel);
-               /* to print debug class, channel */
-               ret += dbg_printf_nonewline("[%s:%s"
-                               , debug_classes[cls] , channel->name);
-
-               if (*channel->multiname)
-                       ret += dbg_printf_nonewline(":%s] ", channel->multiname);
-               else
-                       ret += dbg_printf_nonewline("] ");
-       }
-       if (format) {
-               ret += dbg_vprintf( format, args );
-       }
-       return ret;
-}
-
-int dbg_log( enum _debug_class cls, struct _debug_channel *channel,
-               const char *format, ... )
-{
-       int ret;
-       va_list valist;
-
-       if (!(_dbg_get_channel_flags( channel ) & (1 << cls)))
-               return -1;
-
-       va_start(valist, format);
-       ret = dbg_vlog( cls, channel, format, valist );
-       va_end(valist);
-
-       fflush(stderr);
-
-       return ret;
-}
-
-void assert_fail(char *exp, const char *file, int line)
-{
-       fprintf(stderr, "[%s][%d] Assert(%s) failed \n"
-                       , file, line, exp);
-       fprintf(stdout, "[%s][%d] Assert(%s) failed \n"
-                       , file, line, exp);
-       exit(0);
-}
-
-/* end of debug_ch.c */
diff --git a/debug_ch.h b/debug_ch.h
deleted file mode 100755 (executable)
index f15c96a..0000000
+++ /dev/null
@@ -1,127 +0,0 @@
-/**
- * @file       debug_ch.h
- * @brief      Management of the debugging channels
- *
- * @author     
- * @date
- * @attention 
- */
-
-#ifndef __DEBUGCHANNEL_H
-#define __DEBUGCHANNEL_H
-
-#include <sys/types.h>
-
-//#define NO_DEBUG
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-enum _debug_class
-{
-       __DBCL_FIXME,
-       __DBCL_ERR,
-       __DBCL_WARN,
-       __DBCL_TRACE,
-       __DBCL_INFO,
-
-       __DBCL_INIT = 7  /* lazy init flag */
-};
-
-struct _debug_channel
-{
-       unsigned char flags;
-       char name[15];
-       char multiname[15];
-};
-
-#ifndef NO_DEBUG
-#define __GET_DEBUGGING_FIXME(dbch) ((dbch)->flags & (1 << __DBCL_FIXME))
-#define __GET_DEBUGGING_ERR(dbch)   ((dbch)->flags & (1 << __DBCL_ERR))
-#define __GET_DEBUGGING_WARN(dbch)  ((dbch)->flags & (1 << __DBCL_WARN))
-#define __GET_DEBUGGING_TRACE(dbch) ((dbch)->flags & (1 << __DBCL_TRACE))
-#define __GET_DEBUGGING_INFO(dbch)  ((dbch)->flags & (1 << __DBCL_INFO))
-#else
-#define __GET_DEBUGGING_FIXME(dbch) 0
-#define __GET_DEBUGGING_ERR(dbch)   0
-#define __GET_DEBUGGING_WARN(dbch)  0
-#define __GET_DEBUGGING_TRACE(dbch) 0
-#define __GET_DEBUGGING_INFO(dbch)  0
-#endif
-
-#define __GET_DEBUGGING(dbcl,dbch)  __GET_DEBUGGING##dbcl(dbch)
-
-#define __IS_DEBUG_ON(dbcl,dbch) \
-       (__GET_DEBUGGING##dbcl(dbch) && \
-        (_dbg_get_channel_flags(dbch) & (1 << __DBCL##dbcl)))
-
-#define __DPRINTF(dbcl,dbch) \
-       (!__GET_DEBUGGING(dbcl,(dbch)) || \
-        (dbg_log(__DBCL##dbcl,(dbch), "") == -1)) ? \
-(void)0 : (void)dbg_printf
-
-extern unsigned char _dbg_get_channel_flags( struct _debug_channel *channel );
-extern int _dbg_set_channel_flags( struct _debug_channel *channel,
-               unsigned char set, unsigned char clear );
-
-extern const char *dbg_sprintf( const char *format, ... );
-extern int dbg_printf( const char *format, ... );
-extern int dbg_printf_nonewline( const char *format, ... );
-extern int dbg_log( enum _debug_class cls, struct _debug_channel *ch,
-               const char *format, ... );
-
-extern char *get_dbg_temp_buffer( size_t size );
-extern void release_dbg_temp_buffer( char *buffer, size_t size );
-
-#ifndef TRACE
-#define TRACE                 __DPRINTF(_TRACE,_dbch___default)
-#define TRACE_(ch)            __DPRINTF(_TRACE,&_dbch_##ch)
-#endif
-#define TRACE_ON(ch)          __IS_DEBUG_ON(_TRACE,&_dbch_##ch)
-
-#ifndef WARN
-#define WARN                  __DPRINTF(_WARN,_dbch___default)
-#define WARN_(ch)             __DPRINTF(_WARN,&_dbch_##ch)
-#endif
-#define WARN_ON(ch)           __IS_DEBUG_ON(_WARN,&_dbch_##ch)
-
-#ifndef FIXME
-#define FIXME                 __DPRINTF(_FIXME,_dbch___default)
-#define FIXME_(ch)            __DPRINTF(_FIXME,&_dbch_##ch)
-#endif
-#define FIXME_ON(ch)          __IS_DEBUG_ON(_FIXME,&_dbch_##ch)
-
-#define ERR                   __DPRINTF(_ERR,_dbch___default)
-#define ERR_(ch)              __DPRINTF(_ERR,&_dbch_##ch)
-#define ERR_ON(ch)            __IS_DEBUG_ON(_ERR,&_dbch_##ch)
-
-#ifndef INFO
-#define INFO                  __DPRINTF(_INFO,_dbch___default)
-#define INFO_(ch)             __DPRINTF(_INFO,&_dbch_##ch)
-#endif
-#define INFO_ON(ch)           __IS_DEBUG_ON(_INFO,&_dbch_##ch)
-
-#define DECLARE_DEBUG_CHANNEL(ch) \
-       static struct _debug_channel _dbch_##ch = { ~0, #ch, ""};
-#define DEFAULT_DEBUG_CHANNEL(ch) \
-       static struct _debug_channel _dbch_##ch = { ~0, #ch, ""}; \
-static struct _debug_channel * const _dbch___default = &_dbch_##ch
-
-#define MULTI_DEBUG_CHANNEL(ch, chm) \
-       static struct _debug_channel _dbch_##ch = { ~0, #ch , #chm}; \
-static struct _debug_channel * const _dbch___default = &_dbch_##ch
-
-#define DPRINTF               dbg_printf
-#define MESSAGE               dbg_printf
-
-void assert_fail(char *exp, const char *file, int line);
-
-#define ASSERT(exp) if (exp) ;                                      \
-       else assert_fail( (char *)#exp, __FILE__, __LINE__ )
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif  /* __DEBUGCHANNEL_H */
index fce8395..ee4e270 100644 (file)
@@ -20,7 +20,7 @@
 #include "qemu-log.h"
 #include <sys/time.h>
 
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 MULTI_DEBUG_CHANNEL(qemu, gpi);
 
 /* fixme: move to virtio-gpi.h */
diff --git a/sdb.c b/sdb.c
index 5cf121f..b1309b6 100644 (file)
--- a/sdb.c
+++ b/sdb.c
@@ -14,7 +14,7 @@
 #include "qemu_socket.h"
 #include "sdb.h"
 #include "nbd.h"
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 
 //DEFAULT_DEBUG_CHANNEL(qemu);
 MULTI_DEBUG_CHANNEL(qemu, sdb);
index 1343f95..69314b7 100644 (file)
@@ -27,7 +27,7 @@
 #include "helper_gpi.h"
 
 #include "sdb.h"
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 MULTI_DEBUG_CHANNEL(qemu, gpi);
 
 /**
index ea19f2a..89e83c9 100644 (file)
@@ -1,11 +1,13 @@
-DongKyun Yun <dk77.yun@samsung.com>\r
+HyunGoo Kang <hyungoo1.kang@samsung.com>\r
 DoHyung Hong <don.hong@samsung.com>\r
 SeokYeon Hwang <syeon.hwang@samsung.com>\r
-JinKyu Kim <fredrick.kim@samsung.com>\r
+Hyunjun Son <hj79.son@samsung.com>\r
+SangJin Kim <sangjin3.kim@samsung.com>\r
 KiTae Kim <kt920.kim@samsung.com>\r
 JinHyung Jo <jinhyung.jo@samsung.com>\r
-YuYeon Oh <yuyeon.oh@samsung.com>\r
-WooJin Jung <woojin2.jung@samsung.com>\r
 SungMin Ha <sungmin82.ha@samsung.com>\r
 MunKyu Im <munkyu.im@samsung.com>\r
-HyunGoo Kang <hyungoo1.kang@samsung.com>\r
+JiHye Kim <jihye1128.kim@samsung.com>\r
+GiWoong Kim <giwoong.kim@samsung.com>\r
+YeongKyoon Lee <yeongkyoon.lee@samsung.com\r
+DongKyun Yun <dk77.yun@samsung.com>\r
index ca9358c..2e74a5b 100644 (file)
@@ -30,7 +30,7 @@
 #include "svcamera.h"
 #include "pci.h"
 #include "kvm.h"
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 
 #include <linux/videodev2.h>
 
index 40ea48e..8c9d937 100644 (file)
@@ -41,7 +41,7 @@
 #include "pci_ids.h"
 
 #include "svcamera.h"
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 
 MULTI_DEBUG_CHANNEL(tizen, camera_pci);
 
index 807c1aa..85031b0 100644 (file)
@@ -4,7 +4,7 @@
 #include "hw.h"
 #include "pci.h"
 #include "pci_ids.h"
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 
 #include <libavformat/avformat.h>
 #include <libswscale/swscale.h>
index 9aa388c..6b450bf 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 6324775..a4ee7e3 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index c13055f..91537ae 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 7f95f98..31df943 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index c9c4e7b..025ff19 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 3dfe37f..ce48e0f 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 328447e..78110c4 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index afb0b76..c51e19d 100644 (file)
@@ -1,5 +1,21 @@
 /*
- * Copyright (C) 2010 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ * Emulator
+ *
+ * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact: 
+ * DoHyung Hong <don.hong@samsung.com>
+ * SeokYeon Hwang <syeon.hwang@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
+ * KiTae Kim <kt920.kim@samsung.com>
+ * JinHyung Jo <jinhyung.jo@samsung.com>
+ * SungMin Ha <sungmin82.ha@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
  */
 
 #include <assert.h>
index 1a0c5c0..6f792fd 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 2152b13..d811d99 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 5a93a4e..18c2e6b 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 5402046..648965c 100644 (file)
@@ -1,3 +1,42 @@
+/*
+ * Emulator
+ *
+ * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact: 
+ * DoHyung Hong <don.hong@samsung.com>
+ * SeokYeon Hwang <syeon.hwang@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
+ * KiTae Kim <kt920.kim@samsung.com>
+ * JinHyung Jo <jinhyung.jo@samsung.com>
+ * SungMin Ha <sungmin82.ha@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ * DongKyun Yun <dk77.yun@samsung.com>
+ *
+ * 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
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
+ */
+
+
 /**
  * @file       debug_ch.c
  * @brief      Management of the debugging channels
index 4f85400..99ce49d 100644 (file)
@@ -1,3 +1,42 @@
+/*
+ * Emulator
+ *
+ * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact: 
+ * DoHyung Hong <don.hong@samsung.com>
+ * SeokYeon Hwang <syeon.hwang@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
+ * KiTae Kim <kt920.kim@samsung.com>
+ * JinHyung Jo <jinhyung.jo@samsung.com>
+ * SungMin Ha <sungmin82.ha@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ * DongKyun Yun <dk77.yun@samsung.com>
+ *
+ * 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
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
+ */
+
+
 /**
  * @file       debug_ch.h
  * @brief      Management of the debugging channels
index 1898afb..714d84d 100644 (file)
@@ -1,3 +1,42 @@
+/*
+ * Emulator
+ *
+ * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact: 
+ * DoHyung Hong <don.hong@samsung.com>
+ * SeokYeon Hwang <syeon.hwang@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
+ * KiTae Kim <kt920.kim@samsung.com>
+ * JinHyung Jo <jinhyung.jo@samsung.com>
+ * SungMin Ha <sungmin82.ha@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ * DongKyun Yun <dk77.yun@samsung.com>
+ *
+ * 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
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
+ */
+
+
 /**
  * @file       debug_ch.c
  * @brief      Management of the debugging channels
index 7b96bd6..88d8528 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 99ca68c..d508e12 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 6819123..29a7706 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
old mode 100755 (executable)
new mode 100644 (file)
index 1a00e5f..87f148f
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 46c941d..0f028ab 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 393cf11..4749a6d 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index e00791e..8fee8a6 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef __SIGNAL_H__
 #define __SIGNAL_H__
 
old mode 100755 (executable)
new mode 100644 (file)
index b4c5e1d..84f9b02
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 /* This is a modified and simplified version of original sdl.c in qemu */
 /*
  * QEMU System Emulator
index 2695868..acbb6a5 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 418ca28..53b466e 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 /**
  * @file extern.h
  * @brief - header file
index 568276e..c1097b5 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #include <assert.h>
 #include "fileio.h"
 
index 5bccbdb..03634f2 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 #ifndef __EMULATOR_FILEIO_H__
 #define __EMULATOR_FILEIO_H__
 
index b69150e..9393a4b 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #include "gps.h"
 #include "debug_ch.h"
 
index a6099b1..a0679b7 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef __GPS_H__
 #define __GPS_H__
 
index 1b8e3eb..5d41822 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #include "gpsnew.h"
 #include "debug_ch.h"
 
index b18e058..abfc25b 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef __GPSNEW_H__
 #define __GPSNEW_H__
 #include <stdio.h>
index f2ee698..b9ac1fb 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index a163936..09de840 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
old mode 100755 (executable)
new mode 100644 (file)
index af0dc9f..ddf9c75
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #include "menu_callback.h"
 #include "hw/smbus.h"
 //#include "hw/smb380.h"
index 8bf4cf8..3e45ce2 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 79aa88d..2f1b012 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 0775502..bd07a8e 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index e229bf2..8a27b55 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 8ff9e14..71bc372 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 9113641..96f8ff0 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index fca77e5..5702201 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
old mode 100755 (executable)
new mode 100644 (file)
index e9382f6..6297060
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #include "qemu_gtk_widget.h"
 #include "utils.h"
 #include <pthread.h>
old mode 100755 (executable)
new mode 100644 (file)
index 82fe20d..e3e5933
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef __QEMU__GTK_WIDGET_H__
 #define __QEMU__GTK_WIDGET_H__
 
index f651138..655863b 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #include "screen_shot.h"
 #include "tools.h"
 
index b02360a..7a0e296 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef _SCREEN_SHOT_H_
 #define _SCREEN_SHOT_H_
 
index dfb8401..6079677 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef __SENSOR_H_
 #define __SENSOR_H_
 #ifdef __MINGW32__
index c06c477..e734a6e 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 0e7172c..46a6d99 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 /**
  * @file tools.c
  * @brief - implementation file for utility like skin parser, PLAY, REC, etc.
index 13e1ede..2130f04 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 /**
  * @file tools.h
  * @brief - header file of utility function for skin parser, etc.
index fae2b14..50cff7f 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 #ifndef __UI_IMAGE_H__
 #define __UI_IMAGE_H__
 
index 53c4e81..7c70e9a 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 /**
        @file   utils.c
        @brief  miscellaneous functions used in ISE
index c4019db..5f82629 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 #ifndef __UTILS_H__
 #define __UTILS_H__
 #include <gtk/gtk.h>
index 563a9dc..ebbc15c 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -34,6 +36,7 @@
  *
  */
 
+
 /**
  * @file vinit_process.c
  * @brief - implementation file
index e578b55..b3e5673 100644 (file)
@@ -6,13 +6,15 @@
  * Contact: 
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index d1152c6..86b1d00 100644 (file)
@@ -1,18 +1,20 @@
 /*
- * Emulator
+ * Emulator Manager
  *
  * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact: 
+ * MunKyu Im <munkyu.im@samsung.com>
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index f323603..34708e8 100644 (file)
@@ -1,18 +1,20 @@
 /*
- * Emulator
+ * Emulator Manager
  *
  * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact: 
+ * MunKyu Im <munkyu.im@samsung.com>
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
@@ -35,6 +37,7 @@
  */
 
 
+
 #ifndef __VT_UTILS_H__
 #define __VT_UTILS_H__
 
index f5b6463..8828cfe 100644 (file)
@@ -1,18 +1,20 @@
 /*
- * Emulator
+ * Emulator Manager
  *
  * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact: 
+ * MunKyu Im <munkyu.im@samsung.com>
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
index 5a994a2..39c779d 100644 (file)
@@ -1,18 +1,20 @@
 /*
- * Emulator
+ * Emulator Manager
  *
  * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact: 
+ * MunKyu Im <munkyu.im@samsung.com>
  * DoHyung Hong <don.hong@samsung.com>
  * SeokYeon Hwang <syeon.hwang@samsung.com>
- * JinKyu Kim <fredrick.kim@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
  * KiTae Kim <kt920.kim@samsung.com>
  * JinHyung Jo <jinhyung.jo@samsung.com>
- * YuYeon Oh <yuyeon.oh@samsung.com>
- * WooJin Jung <woojin2.jung@samsung.com>
  * SungMin Ha <sungmin82.ha@samsung.com>
- * MunKyu Im <munkyu.im@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * DongKyun Yun <dk77.yun@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
diff --git a/vl.c b/vl.c
index ee7c386..7684393 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -168,7 +168,7 @@ int main(int argc, char **argv)
 #include "ui/qemu-spice.h"
 #include "sdb.h"
 
-#include "debug_ch.h"
+#include "tizen/src/debug_ch.h"
 
 //DEFAULT_DEBUG_CHANNEL(qemu);
 MULTI_DEBUG_CHANNEL(qemu, main);
diff --git a/vl.h b/vl.h
index f65c771..10ef9ce 100644 (file)
--- a/vl.h
+++ b/vl.h
@@ -1,3 +1,41 @@
+/*
+ * QEMU
+ *
+ * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact: 
+ * DoHyung Hong <don.hong@samsung.com>
+ * SeokYeon Hwang <syeon.hwang@samsung.com>
+ * Hyunjun Son <hj79.son@samsung.com>
+ * SangJin Kim <sangjin3.kim@samsung.com>
+ * MunKyu Im <munkyu.im@samsung.com>
+ * KiTae Kim <kt920.kim@samsung.com>
+ * JinHyung Jo <jinhyung.jo@samsung.com>
+ * SungMin Ha <sungmin82.ha@samsung.com>
+ * JiHye Kim <jihye1128.kim@samsung.com>
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ * DongKyun Yun <dk77.yun@samsung.com>
+ *
+ * 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
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
+ */
+
 
 int qemu_main(int argc, char **argv, char **envp);