Sponsored Content
Contact Us Forum Support Area for Unregistered Users & Account Problems Trojan is detected when I visit Programmers forum Post 303004155 by Neo on Wednesday 27th of September 2017 10:37:21 AM
Old 09-27-2017
Also, "ESET Nod32" is kinda famous (like many Window's based antivirus tools) for producing false alarms.

For example, see this presentation:

False alarms

So, if anyone is running any of these "false alarm prone" anti-virus products, please post complete details including (at a mininum);

(1) The EXACT page you are seeing a warning (this means the exact link!).

(2) Your Operating System, Browser and AV programs (with version numbers).

(3) Browsing the forums as a guest or registered (logged in) user?
This User Gave Thanks to Neo For This Post:
 

6 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Perl - Programmers manual online?

I have never programmed in Perl (insert laughter, mock, etc. here ____) - so I need a sort of "Programming in Perl" covering the basics. I now have two Perl books, one is a 5 volume Unix resource kit, the other is "Mastering algorithms with Perl" - none of them explains how to produce "hello,... (11 Replies)
Discussion started by: AtleRamsli
11 Replies

2. News, Links, Events and Announcements

Good Essays For Programmers

Check the essays out. http://www.paulgraham.com (0 Replies)
Discussion started by: photon
0 Replies

3. What is on Your Mind?

Suggested venues to look for advanced C programmers

Can someone suggest any online venues to assist in recruiting a senior C programmer (looking for someone interested in working on kerberos code). I've tried a bunch of the open source and higher ed lists (this is for Univ. of Michigan). The commercial services such as Dice or monster yield a... (7 Replies)
Discussion started by: painman
7 Replies

4. Shell Programming and Scripting

Shell quoting rules for other languages programmers

I've seen so many times that programmers were confused about shell quoting and white spaces interpretation, that I decided to investigate that problem deeper. And my conclusion is that quoting in shells is very different from other programming languages. Programmers who have bigger experience in... (6 Replies)
Discussion started by: wyderkat
6 Replies

5. Programming

Hello UNIX programmers

i have MOTIF installed X11 a easy program is saved as hello.c there is the following message where can i get the X11/intrinsic.h , file ??? need help to compile my system : MX-16 Linux Debian Jessie / i386 hans@mx1:~/Documents $ cc push.c -o push -lXm -lXt -lX11 In file included from... (0 Replies)
Discussion started by: Zabo
0 Replies

6. What is on Your Mind?

The poorest of computer users are programmers...

Hi guys and gals... A mildly humourous blog from 2013, but I come into this category... ;oDD Languager: The Poorest Computer Users are Programmers (0 Replies)
Discussion started by: wisecracker
0 Replies
tsalarm_get(3EXT)					    Extended Library Functions						 tsalarm_get(3EXT)

NAME
tsalarm_get, tsalarm_set - get or set alarm relays SYNOPSIS
cc [ flag... ] file... -ltsalarm [ library... ] #include <tsalarm.h> int tsalarm_get(uint32_t alarm_type, uint32_t *alarm_state); int tsalarm_set(uint32_t alarm_type, uint32_t alarm_state); PARAMETERS
alarm_type The alarm type whose state is retrieved or set. Valid settings are: TSALARM_CRITICAL critical TSALARM_MAJOR major TSALARM_MINOR minor TSALARM_USER user alarm_state The state of the alarm. Valid settings are: TSALARM_STATE_ON The alarm state needs to be changed to "on", or is returned as "on". TSALARM_STATE_OFF The alarm state needs to be changed to "off", or is returned as "off". TSALARM_STATE_UNKNOWN The alarm state is returned as unknown. DESCRIPTION
The TSALARM interface provides functions through which alarm relays can be controlled. The set of functions and data structures of this interface are defined in the <tsalarm.h> header. There are four alarm relays that are controlled by ILOM. Each alarm can be set to "on" or "off" by using tsalarm interfaces provided from the host. The four alarms are labeled as critical, major, minor, and user. The user alarm is set by a user application depending on system condition. LEDs in front of the box provide a visual indication of the four alarms. The number of alarms and their meanings and labels can vary across platforms. The tsalarm_get() function gets the state of alarm_type and returnsit in alarm_state. If successful, the function returns 0. The tsalarm_set() function sets the state of alarm_type to the value in alarm_state. If successful, the function returns 0. The following structures are defined in <tsalarm.h>: typedef struct tsalarm_req { uint32_t alarm_id; uint32_t alarm_action; } tsalarm_req_t; typedef struct tsalarm_resp { uint32_t status; uint32_t alarm_id; uint32_t alarm_state; } tsalarm_resp_t; RETURN VALUES
The tsalarm_get() and tsalarm_set() functions return the following values: TSALARM_CHANNEL_INIT_FAILURE Channel initialization failed. TSALARM_COMM_FAILURE Channel communication failed. TSALARM_NULL_REQ_DATA Allocating memory for request data failed. TSALARM_SUCCESS Successful completion. TSALARM_UNBOUND_PACKET_RECVD An incorrect packet was received. The tsalarm_get() function returns the following value: TSALARM_GET_ERROR An error occurred while getting the alarm state. The tsalarm_set() function returns the following value: TSALARM_SET_ERROR An error occurred while setting the alarm state. EXAMPLES
Example 1 Get and set an alarm state. The following example demonstrates how to get and set an alarm state. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <tsalarm.h> void help(char *name) { printf("Syntax: %s [get <type> | set <type> <state>] ", name); printf(" type = { critical, major, minor, user } "); printf(" state = { on, off } "); exit(0); } int main(int argc, char **argv) { uint32_t alarm_type, alarm_state; if (argc < 3) help(argv[0]); if (strncmp(argv[2], "critical", 1) == 0) alarm_type = TSALARM_CRITICAL; else if (strncmp(argv[2], "major", 2) == 0) alarm_type = TSALARM_MAJOR; else if (strncmp(argv[2], "minor", 2) == 0) alarm_type = TSALARM_MINOR; else if (strncmp(argv[2], "user", 1) == 0) alarm_type = TSALARM_USER; else help(argv[0]); if (strncmp(argv[1], "get", 1) == 0) { tsalarm_get(alarm_type, &alarm_state); printf("alarm = %d state = %d ", alarm_type, alarm_state); } else if (strncmp(argv[1], "set", 1) == 0) { if (strncmp(argv[3], "on", 2) == 0) alarm_state = TSALARM_STATE_ON; else if (strncmp(argv[3], "off", 2) == 0) alarm_state = TSALARM_STATE_OFF; else help(argv[0]); tsalarm_set(alarm_type, alarm_state); } else { help(argv[0]); } return 0; } ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Uncommitted | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
libtsalarm(3LIB), attributes(5) SunOS 5.11 4 Sep 2007 tsalarm_get(3EXT)
All times are GMT -4. The time now is 10:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy