Arquivos
hhvm/hphp/util/kernel-version.cpp
Jordan DeLong fd00ef394e Remove includes of util.h from .cpp files in hphp/util
Replace some uses with folly functions or boost.  I kept
string_vsnprintf in its own header for now.  We could probably move it
to folly/String.h (folly has stringPrintf and such, just no vararg
version), but on the other hand using va_list is not very encouraged
so maybe we should just leave it here for these legacy uses.

Reviewed By: @ptarjan

Differential Revision: D1124742
2014-01-13 15:19:32 -08:00

47 linhas
1.7 KiB
C++

/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/util/kernel-version.h"
#include "hphp/util/assertions.h"
#include "hphp/util/portability.h"
#include <unistd.h>
#include <sys/utsname.h>
#include <stdio.h>
namespace HPHP {
void KernelVersion::parse(const char* s) {
DEBUG_ONLY int numFields = sscanf(s,
"%d.%d.%d-%d_fbk%d_",
&m_major, &m_dot, &m_dotdot, &m_dash,
&m_fbk);
assert(numFields >= 3);
}
KernelVersion::KernelVersion() {
struct utsname uts;
DEBUG_ONLY int err = uname(&uts);
assert(err == 0);
m_major = m_dot = m_dotdot = m_dash = m_fbk = -1;
parse(uts.release);
}
KernelVersion::KernelVersion(const char* s) {
parse(s);
}
}