Skip to content

Commit

Permalink
[SIGAR-233] Update sys_info API to recognize MacOSX 10.7 as 'Lion'
Browse files Browse the repository at this point in the history
  • Loading branch information
dougm committed Jul 18, 2011
1 parent d832846 commit a04f46a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/os/darwin/darwin_sigar.c
Original file line number Diff line number Diff line change
Expand Up @@ -3484,6 +3484,9 @@ int sigar_os_sys_info_get(sigar_t *sigar,
case 6:
codename = "Snow Leopard";
break;
case 7:
codename = "Lion";
break;
default:
codename = "Unknown";
break;
Expand Down

0 comments on commit a04f46a

Please sign in to comment.