Difference between revisions of "Android Kernel Features"

From eLinux.org
Jump to: navigation, search
(List of Kerenl features unique to Android)
(add more information about kernel logger)
Line 5: Line 5:
 
* ashmem - Android share memory
 
* ashmem - Android share memory
 
* PMEM - Process memory allocator
 
* PMEM - Process memory allocator
* logcat -
+
* logger - system logging facility
 +
** This is the kernel support for the 'logcat' command
 +
** The kernel driver for the serial devices for logging are in the source code drivers/android/logging.c
 +
** See [[Android_logger]] for more information
 
* wakelock - used for power management
 
* wakelock - used for power management
 
* oom handling modifications
 
* oom handling modifications

Revision as of 16:24, 11 November 2009

List of Kerenl features unique to Android

  • Binder - corba-like IPC
  • ashmem - Android share memory
  • PMEM - Process memory allocator
  • logger - system logging facility
    • This is the kernel support for the 'logcat' command
    • The kernel driver for the serial devices for logging are in the source code drivers/android/logging.c
    • See Android_logger for more information
  • wakelock - used for power management
  • oom handling modifications
    • lowmem notifications
  • alarm

Resources