Search Results

Search: Posts Made By: ilko_partizan
Forum: Programming 08-13-2008
3,576
Posted By ilko_partizan
You have to link some *.so or *.a library to your...
You have to link some *.so or *.a library to your program from kerberos kadmin project.

Best regards,

Iliyan Varshilov
Forum: Programming 08-04-2008
3,096
Posted By ilko_partizan
Are you sure to build all libraries and resources...
Are you sure to build all libraries and resources in your project ?

Best regards,

Iliyan Varshilov
Forum: Programming 08-04-2008
11,815
Posted By ilko_partizan
You can use http://xerces.apache.org/xerces-c...
You can use http://xerces.apache.org/xerces-c thread-safe library to solve your problem.

Best regards,

Iliyan Varshilov
Forum: Programming 07-31-2008
12,330
Posted By ilko_partizan
This is a good basic point about development...
This is a good basic point about development scalability software network server.

The C10K problem (http://kegel.com/c10k.html)

Best regards,

Iliyan Varshilov
Forum: Programming 07-31-2008
7,938
Posted By ilko_partizan
You can read bellow article: CodeProject:...
You can read bellow article:

CodeProject: Convert between std::string and std::wstring, UTF-8 and UTF-16. Free source code and programming help...
2,452
Posted By ilko_partizan
Memtest86
If You want test memory of your PC You have to burn CD/DVD with memtest86 software. When you have burned CD/DVD with memtest86
You have to boot PC from CD/DVD device and test will be started.
...
3,042
Posted By ilko_partizan
HOME env
Do you know shell in Linux without HOME env ?

Best regards,
Iliyan Varshilov
Edit/Delete Message
Forum: Programming 02-27-2008
4,275
Posted By ilko_partizan
HOME env
Do you know shell in Linux without HOME env.

Best regards,
Iliyan Varshilov
Forum: Programming 10-08-2007
6,013
Posted By ilko_partizan
Hallo, What kind of CRC algorithm would you...
Hallo,
What kind of CRC algorithm would you like to use ?
The types is two - CRC16 and CRC32.

Best regard,
Iliyan Varshilov
Forum: Programming 08-10-2007
14,357
Posted By ilko_partizan
You can solve your problem with library functions...
You can solve your problem with library functions - "popen", "pclose"

http://www.freebsd.org/cgi/man.cgi?query=popen&apropos=0&sektion=0&manpath=FreeBSD+6.2-RELEASE&format=html

Best regards,...
Forum: Programming 08-01-2007
22,885
Posted By ilko_partizan
The below how-to describes serial ports...
The below how-to describes serial ports communication and its POSIX implementation.

Serial Programming Guide for POSIX Operating Systems (http://digilander.libero.it/robang/rubrica/serial.htm)
...
Forum: Programming 07-23-2007
29,305
Posted By ilko_partizan
The below example shows a simple solution of your...
The below example shows a simple solution of your problem.

#include <stdio.h>
#include <stdlib.h>

int main ()
{
/* initialize random generator */
srand ( time(NULL) );

/* generate...
Forum: Programming 07-09-2007
10,969
Posted By ilko_partizan
You can solve your problem with system call...
You can solve your problem with system call "gettimeofday" with below steps.

The steps are following:

1) The gettimeofday is called when child process begins executing.
2) The...
Forum: Programming 06-23-2007
2,788
Posted By ilko_partizan
Sorry, but I haven't understood your problem. ...
Sorry, but I haven't understood your problem.
Are You describing more about what have you wanted to do?

Best regards,
Iliyan Varshilov
Forum: Programming 06-23-2007
4,335
Posted By ilko_partizan
You can generate xml code with expat lib. ...
You can generate xml code with expat lib.
http://expat.sourceforge.net/

Best regards,
Iliyan Varshilov
Forum: Programming 06-19-2007
23,634
Posted By ilko_partizan
You should read more about IPC (interprocess...
You should read more about IPC (interprocess communications ) in Unix basic system.

This is a good book about IPC....
Forum: Programming 06-19-2007
23,634
Posted By ilko_partizan
You can some mistakes in your code: The...
You can some mistakes in your code:

The first mistakes in line - 'kill(getpid(),-9);'
In the Unix basic systems have not a signal with id '-9', but have a signal with id '9'.
Try with int...
Forum: Programming 06-19-2007
23,634
Posted By ilko_partizan
You can get a error in string format from your...
You can get a error in string format from your programme with function 'strerror'.
This is part of code you needed:


#include <errno.h>
#include <stdio.h>

fprintf(stderr, "Error: %s\n",...
Forum: Programming 06-19-2007
23,634
Posted By ilko_partizan
If you need killing a process from C programme,...
If you need killing a process from C programme, You will read about system call 'kill'.

http://www.freebsd.org/cgi/man.cgi?query=kill&apropos=0&sektion=2&manpath=FreeBSD+6.2-RELEASE&format=html
...
Forum: Programming 06-19-2007
23,634
Posted By ilko_partizan
You can kill a program with command: kill -9...
You can kill a program with command:
kill -9 <PID of programme>
If you can not necessary permission about programme, You won't kill a programme.

Best regards,
Iliyan Varshilov
Forum: Programming 06-18-2007
37,253
Posted By ilko_partizan
You are trying to solve your validation problem...
You are trying to solve your validation problem with regular expression library function .
http://www.opengroup.org/onlinepubs/000095399/functions/regcomp.html

Best regards,
Iliyan Varshilov
Forum: Programming 06-18-2007
37,253
Posted By ilko_partizan
You are trying with following standard C library...
You are trying with following standard C library function:

This function test only for decimal-digit character...
Forum: Programming 06-14-2007
5,124
Posted By ilko_partizan
This article will help you to understand "make". ...
This article will help you to understand "make".
An Introduction to the UNIX Make Utility (http://www.mtsu.edu/~csdept/FacilitiesAndResources/make.htm)

Best regards,
Iliyan Varshilov
Forum: Programming 06-07-2007
9,535
Posted By ilko_partizan
In my Linux OS output is following: ...
In my Linux OS output is following:


System name - Linux
Nodename - linux
Release - 2.6.13-15.8-default
Version - #1 Tue Feb 7 11:07:24 UTC 2006
Machine - x86_64

...
Forum: Programming 06-07-2007
9,535
Posted By ilko_partizan
You are seeing a following example. ...
You are seeing a following example.


#include <sys/utsname.h>

main()
{
struct utsname sys_inf;

uname(&sys_inf);

printf("System name - %s \n", sys_inf.sysname);
...
Showing results 1 to 25 of 33

 
All times are GMT -4. The time now is 10:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy